summarylogtreecommitdiffstats
path: root/freefall-openrc.install
diff options
context:
space:
mode:
Diffstat (limited to 'freefall-openrc.install')
-rw-r--r--freefall-openrc.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/freefall-openrc.install b/freefall-openrc.install
new file mode 100644
index 000000000000..08b0974c12e1
--- /dev/null
+++ b/freefall-openrc.install
@@ -0,0 +1,16 @@
+_svc="freefall"
+_rlvl="default"
+
+post_install() {
+ _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}'"
+}