diff options
-rwxr-xr-x | busybox.pkg/postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index 6de6916..b23c6b7 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -7,9 +7,9 @@ if [ "x${1}" = 'xconfigure' ]; then done </usr/share/busybox/alternatives if ! [ -f /etc/rc.policy ]; then if [ "x$(cat /etc/proteanos_plat)" = 'xdev' ]; then - printf 'disabled' >/etc/rc.policy + printf 'disabled\n' >/etc/rc.policy else - printf 'enabled' >/etc/rc.policy + printf 'enabled\n' >/etc/rc.policy fi fi if [ -f /usr/share/busybox/init-scripts ]; then |