@@ -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"
+end
+printStep 'Rebooted'
+date
+echo 'Script has ended'
@@ -0,0 +1,16 @@
+# Reboot the system and print logs in jovian home
+printStep 'Start'
+printStep 'Reboot'
+systemctl reboot
@@ -0,0 +1,23 @@
+# Update the system and print logs in jovian home
+printStep '1 : update'
+apt update
+printStep '2 : upgrade'
+apt upgrade -y
+printStep 'End'