Skip to content
Commits on Source (2)
......@@ -8,6 +8,8 @@ if [ "$1" != "-f" ];then
exit 1
fi
systemctl stop apt-daily
systemctl stop apt-daily-upgrade
systemctl stop unattended-upgrades
aims-install-rstudio
apt-get -y install sagemath-jupyter jupyter jupyter-notebook python-notebook spyder3 r-cran-irkernel
......@@ -15,6 +17,8 @@ apt-get -y dist-upgrade
apt-get clean
# clear Mac OSX boot entries in grub (installer USB looks like a Mac disk and get's added to grub)
update-grub
systemctl start apt-daily
systemctl start apt-daily-upgrade
systemctl start unattended-upgrades
......@@ -6,8 +6,14 @@ read -a ANSWER -p "* Please type 'Yes' and press Enter to continue
"
if [ $ANSWER = "Yes" ]; then
systemctl stop apt-daily
systemctl stop apt-daily-upgrade
systemctl stop unattended-upgrades
apt-get -y install aims-restricted-extras
aims-restricted-extras-setup
systemctl start apt-daily
systemctl start apt-daily-upgrade
systemctl start unattended-upgrades
else
echo "Aborting..."
fi
......
aims-desktop (1:2020.62) buster; urgency=medium
* Stop apt-daily and apt-daily-upgrade while aims-complete-install and
aims-install-restricted-extras
-- Jan Groenewald <jan@aims.ac.za> Sat, 31 Aug 2019 13:53:12 +0000
aims-desktop (1:2020.61) buster; urgency=medium
* stop unattended-upgrades while aims-complete-install
......