diff options
Diffstat (limited to 'pcr/openrc-desktop/gpm.install')
-rw-r--r-- | pcr/openrc-desktop/gpm.install | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pcr/openrc-desktop/gpm.install b/pcr/openrc-desktop/gpm.install new file mode 100644 index 000000000..827633159 --- /dev/null +++ b/pcr/openrc-desktop/gpm.install @@ -0,0 +1,16 @@ +_svc="gpm" +_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}'" +} |