Still, security by offuscation is bad, it's not a good practice to expose server configurations on the web.
@@ -1,5 +0,0 @@
-# Cron scripts
-
-Scripts designed to be put in a crontab with `crontab -e`.
-Use `crontab -l` to see your current crontab. Use `@reboot` at the beginning of a crontab line to execute a command at startup.
@@ -1,14 +0,0 @@
-#!/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'
@@ -1,4 +0,0 @@
-# m h dom mon dow command
-0 3 * * * /home/jovian/Cron/update_system > /home/jovian/Cron/logs/update_system_log.txt 2> /home/jovian/Cron/logs/update_system_error.txt
-0 3 * * 4 /home/jovian/Cron/reboot_system > /home/jovian/Cron/logs/reboot_system_log.txt 2> /home/jovian/Cron/logs/reboot_system_error.txt
-@reboot /home/jovian/Cron/boot_system > /home/jovian/Cron/logs/reboot_system_log.txt 2> /home/jovian/Cron/logs/reboot_system_error.txt
@@ -1,16 +0,0 @@
-# Reboot the system and print logs in jovian home
-printStep 'Start'
-printStep 'Reboot'
-systemctl reboot
@@ -1,11 +0,0 @@
-## Add it in your crontab at reboot
-## $ sudo su gituser
-## $ crontab -e
-## @reboot /home/gituser/startgogs
-## Wait for PostgreSQL
-sleep 30
-/home/gituser/gogs/gogs web > /dev/null 2>&1 &
@@ -1,23 +0,0 @@
-# Update the system and print logs in jovian home
-printStep '1 : update'
-apt update
-printStep '2 : upgrade'
-apt upgrade -y
-printStep 'End'