Browse Source

:tada: Save auto-update scripts

DricomDragon 1 year ago
parent
commit
5c8c9c560e

+ 14 - 0
Server/Scripts/Update/boot_system

@@ -0,0 +1,14 @@
+#!/usr/bin/fish
+
+# Warn that system reboots and prints logs in jovian home
+## Should be executed as super admin
+
+function printStep
+	echo '-  -  -  -  -'
+	echo "Step $argv"
+	echo '-  -  -  -  -'
+end
+
+printStep 'Rebooted'
+date
+echo 'Script has ended'

+ 16 - 0
Server/Scripts/Update/reboot_system

@@ -0,0 +1,16 @@
+#!/usr/bin/fish
+
+# Reboot the system and print logs in jovian home
+## Should be executed as super admin
+
+function printStep
+	echo '-  -  -  -  -'
+	echo "Step $argv"
+	echo '-  -  -  -  -'
+end
+
+printStep 'Start'
+date
+
+printStep 'Reboot'
+systemctl reboot

+ 23 - 0
Server/Scripts/Update/update_system

@@ -0,0 +1,23 @@
+#!/usr/bin/fish
+
+# Update the system and print logs in jovian home
+## Should be executed as super admin
+
+function printStep
+	echo '-  -  -  -  -'
+	echo "Step $argv"
+	echo '-  -  -  -  -'
+end
+
+printStep 'Start'
+date
+
+printStep '1 : update'
+apt update
+
+printStep '2 : upgrade'
+apt upgrade -y
+
+printStep 'End'
+date
+echo 'Script has ended'