diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-03-28 11:15:23 +0200 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-03-28 11:15:23 +0200 |
commit | d62126ac217264b37c723506403b90898daadc08 (patch) | |
tree | f3d47c6a6a9933f15cb1a16ce2aa0a9f0cde4f76 | |
parent | fe3f376fb75657f961ac1fb726ffeba741f36341 (diff) | |
download | itzks-install-script-d62126ac217264b37c723506403b90898daadc08.tar.gz itzks-install-script-d62126ac217264b37c723506403b90898daadc08.tar.bz2 itzks-install-script-d62126ac217264b37c723506403b90898daadc08.zip |
Add command to run $ apt-get upgrade.
-rwxr-xr-x | install-itzks-workstation | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index 831c1e9..83a3ec4 100755 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -126,6 +126,10 @@ if [ ! -d "/usr/share/doc/libdvdcss2" ]; then unset answer fi +# Run upgrades to prevent possible problems while running puppet +apt-get update 1>/dev/null +apt-get upgrade + #################### # Hand-over all NICs to NetworkManager |