summaryrefslogtreecommitdiff
path: root/pcr/openrc-net/dhcp.install
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/openrc-net/dhcp.install')
-rw-r--r--pcr/openrc-net/dhcp.install20
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/openrc-net/dhcp.install b/pcr/openrc-net/dhcp.install
new file mode 100644
index 000000000..eb1d9d96e
--- /dev/null
+++ b/pcr/openrc-net/dhcp.install
@@ -0,0 +1,20 @@
+_svc="dhcpd"
+_rlvl="default"
+
+post_install() {
+# _usr="dhcp"
+# _grp="dhcp"
+# echo " ==> requires $_usr user"
+# echo " ==> requires $_grp group"
+ _cmd="rc-update add ${_svc} ${_rlvl}"
+ echo " ==> run '${_cmd}'"
+}
+
+post_upgrade() {
+ post_install "$1"
+}
+
+post_remove() {
+ _cmd="rc-update del ${_svc} ${_rlvl}"
+ echo " ==> run '${_cmd}'"
+}