summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--busybox-norootreboot.install8
1 files changed, 4 insertions, 4 deletions
diff --git a/busybox-norootreboot.install b/busybox-norootreboot.install
index 2d75985c038c..edf1465c1566 100644
--- a/busybox-norootreboot.install
+++ b/busybox-norootreboot.install
@@ -1,7 +1,7 @@
post_install() {
groupadd --system busybox
- chmod -v +s /usr/bin/busybox
- chown root:busybox -v /usr/bin/busybox
+ chmod +s /usr/bin/busybox
+ chown root:busybox /usr/bin/busybox
gpasswd --add root busybox
echo "You might want to add your user to the 'busybox' group"
}
@@ -11,6 +11,6 @@ post_remove() {
}
post_upgrade() {
- chmod -v +s /usr/bin/busybox
- chown root:busybox -v /usr/bin/busybox
+ chmod +s /usr/bin/busybox
+ chown root:busybox /usr/bin/busybox
}