diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-02 23:43:58 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-02 23:43:58 (EDT) |
commit | aaea4241bd7c846036c8830e810a14895a02c9ac (patch) | |
tree | e29823d12380798ce24f81498d0f297e20d78862 | |
parent | 57f175ae5f51376c2657a2b733388eada6296931 (diff) |
Conditionally disable service starting.
-rwxr-xr-x | busybox.pkg/postinst | 7 | ||||
-rw-r--r-- | src.etc/rc.common | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index 99b8006..c499f03 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -5,6 +5,13 @@ if [ "x${1}" = 'xconfigure' ]; then update-alternatives --install "${link}" "${name}" \ "${link}.busybox" "${prio}" done </usr/share/busybox/alternatives + if ! [ -e /etc/rc.policy ]; then + if [ "x$(cat /etc/proteanos_plat)" = 'xdev' ]; then + printf 'disabled' >/etc/rc.policy + else + printf 'enabled' >/etc/rc.policy + fi + fi if [ -e /usr/share/busybox/init-scripts ]; then while read script; do "/etc/init.d/${script}" enable diff --git a/src.etc/rc.common b/src.etc/rc.common index 8ccb6f7..42f33d6 100644 --- a/src.etc/rc.common +++ b/src.etc/rc.common @@ -32,6 +32,9 @@ main() fi if [ "x${ALL_CMDS#* ${action} }" != "x${ALL_CMDS}" ]; then + if [ "x${action}" = 'xstart' ] && [ -e /etc/rc.policy ]; then + [ "x$(cat /etc/rc.policy)" = 'disabled' ] && return 0 + fi ${action} es=${?} log_end ${es} |