boot_system 250 B

1234567891011121314
  1. #!/usr/bin/fish
  2. # Warn that system reboots and prints logs in jovian home
  3. ## Should be executed as super admin
  4. function printStep
  5. echo '- - - - -'
  6. echo "Step $argv"
  7. echo '- - - - -'
  8. end
  9. printStep 'Rebooted'
  10. date
  11. echo 'Script has ended'