diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-28 21:51:04 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-28 21:51:04 +0200 |
commit | e7d2cd49a731408cd9485210770de919b6e3d48d (patch) | |
tree | 9105ad62bc4503541e0cfce1979a7f984362e483 | |
parent | 8247697401390de87db84da41774be5f0ddbea17 (diff) | |
download | itzks-install-script-e7d2cd49a731408cd9485210770de919b6e3d48d.tar.gz itzks-install-script-e7d2cd49a731408cd9485210770de919b6e3d48d.tar.bz2 itzks-install-script-e7d2cd49a731408cd9485210770de919b6e3d48d.zip |
APT: upgrade the base system before doing anything else. This esp. should pull in latest debian-edu-config before we install our ITZkS packages.
-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 e65b602..fb29e94 100755 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -49,6 +49,10 @@ fi # Retrieve LDAP CA certificate invoke-rc.d fetch-ldap-cert start +# Run upgrades to ensure the base system is as up-to-date as possible +apt-get update 1>/dev/null +apt-get upgrade -y + # Add itzks.list and its contents if file not already there if [ ! -e "/etc/apt/sources.list.d/itzks.list" ]; then touch /etc/apt/sources.list.d/itzks.list |