From 635348a1ca16c4daed14a9061a456c62441ea37b Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Sat, 16 Feb 2019 02:00:13 +1100 Subject: [PATCH] style --- scripts/bootstrap-host.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-host.sh b/scripts/bootstrap-host.sh index 611fed3..34628ca 100755 --- a/scripts/bootstrap-host.sh +++ b/scripts/bootstrap-host.sh @@ -19,7 +19,8 @@ if [ "$REPO_ROOT" -ef "$DESKTOP_ENVIRONMENT_REPOSITORY" ]; then fi # Install utilities -apt-get update -qq && apt-get install -qq \ +apt-get update -qq && \ + apt-get install -qq \ curl \ gosu \ sudo \ @@ -39,7 +40,7 @@ echo 'fs.inotify.max_user_watches=1000000' >> /etc/sysctl.conf echo '* soft nofile 1000000' >> /etc/security/limits.conf echo '* hard nofile 1000000' >> /etc/security/limits.conf -# Remove any existing group with id 999 that is not the docker group +# Remove existing group with id 999 if it is not the docker group getent group 999 | \ grep -v docker | \ cut -d: -f1 | \