浏览代码

:memo: Explain how to auto-update a server

Home-made solution. Prefer `unattended-upgrades` for real use cases.
DricomDragon 1 年之前
父节点
当前提交
8382d4cd30
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      Guides/install-linux.md

+ 16 - 0
Guides/install-linux.md

@@ -99,3 +99,19 @@ Like _.thunderbird_, _.mozilla_, _.ssh_
 Launch _seahorse_ and set a blank keyring password.
 
 **Warning: this will put your keyring as unencrypted**
+
+## Headless installation
+
+For non-interactive servers.
+
+### Auto-update
+
+Scripts are in `Server/Scripts/Update`.
+
+Edit the root crontab :
+
+```cron
+0 2 * * * /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
+```