From 2d9069349e5ccb3642e0ccc8405ced10d40bf1f5 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Mon, 23 Nov 2020 17:41:03 -0500 Subject: [PATCH] Remove auto update --- root/etc/cont-init.d/30-updater.bash | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 root/etc/cont-init.d/30-updater.bash diff --git a/root/etc/cont-init.d/30-updater.bash b/root/etc/cont-init.d/30-updater.bash deleted file mode 100644 index 3600662..0000000 --- a/root/etc/cont-init.d/30-updater.bash +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/with-contenv bash - -# update packages -apt-get update -apt-get upgrade -y - -# update SMA from git -git -C ${SMA_PATH} reset --hard HEAD -git -C ${SMA_PATH} pull origin master - -# update pip3 requirements -pip3 install -r /usr/local/sma/setup/requirements.txt --upgrade --user - -exit $?