diff options
author | freaj <freaj@riseup.net> | 2015-03-30 10:08:17 +0200 |
---|---|---|
committer | freaj <freaj@riseup.net> | 2015-03-30 10:08:17 +0200 |
commit | 41c9dc8729840f45f174a14a08703e04d1f5717e (patch) | |
tree | feddfb083b443556f04bac84c6519d356e061854 /pcr/openrc-net/wicd.install | |
parent | 7f0385668a7eb0caf6a74f13d10c1fda5c7ad86d (diff) | |
download | abslibre-41c9dc8729840f45f174a14a08703e04d1f5717e.tar.gz abslibre-41c9dc8729840f45f174a14a08703e04d1f5717e.tar.bz2 abslibre-41c9dc8729840f45f174a14a08703e04d1f5717e.zip |
openrc-net: add new package to [pcr]
Diffstat (limited to 'pcr/openrc-net/wicd.install')
-rw-r--r-- | pcr/openrc-net/wicd.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/openrc-net/wicd.install b/pcr/openrc-net/wicd.install new file mode 100644 index 000000000..0dd6c421f --- /dev/null +++ b/pcr/openrc-net/wicd.install @@ -0,0 +1,20 @@ +_svc="wicd" +_rlvl="default" + +post_install() { + _cmd="rc-update add ${_svc} ${_rlvl}" + echo " ==> run '${_cmd}'" +# echo "To start wicd at boot, add /etc/init.d/wicd to a runlevel and:" +# echo "Remove all net.* initscripts (except for net.lo) from all runlevels" +# echo "Add these scripts to the RC_PLUGsvcS line in /etc/rc.conf" +# echo "(For example, rc_hotplug="!net.eth* !net.wlan*")" +} + +post_upgrade() { + post_install "$1" +} + +post_remove() { + _cmd="rc-update del ${_svc} ${_rlvl}" + echo " ==> run '${_cmd}'" +} |