File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -674,7 +674,8 @@ echo -e '#!/bin/sh \nexit 101' > /usr/sbin/policy-rc.d
674674chmod a+x /usr/sbin/policy-rc.d
675675
676676# Install apt packages
677- apt-get -y install $software
677+ echo " We will now silently install all required packages. This process will take around 5-10 minutes..."
678+ apt-get -y install $software > /dev/null 2>&1
678679check_result $? " apt-get install failed"
679680
680681# Restore policy
Original file line number Diff line number Diff line change @@ -659,7 +659,8 @@ echo -e '#!/bin/sh\nexit 101' > /usr/sbin/policy-rc.d
659659chmod a+x /usr/sbin/policy-rc.d
660660
661661# Installing apt packages
662- apt-get -y install $software
662+ echo " We will now silently install all required packages. This process will take around 5-10 minutes..."
663+ apt-get -y install $software > /dev/null 2>&1
663664check_result $? " apt-get install failed"
664665
665666# Restoring autostart policy
You can’t perform that action at this time.
0 commit comments