浏览代码

:tada: Save auto-update scripts

DricomDragon 1 年之前
父节点
当前提交
5c8c9c560e
共有 3 个文件被更改,包括 53 次插入0 次删除
  1. 14 0
      Server/Scripts/Update/boot_system
  2. 16 0
      Server/Scripts/Update/reboot_system
  3. 23 0
      Server/Scripts/Update/update_system

+ 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'