Skip to content

Instantly share code, notes, and snippets.

@ciffelia
Created June 1, 2021 16:58
Show Gist options
  • Save ciffelia/9fb7a18a2b45c9a680c4cadc6688c63a to your computer and use it in GitHub Desktop.
Save ciffelia/9fb7a18a2b45c9a680c4cadc6688c63a to your computer and use it in GitHub Desktop.
毎週月曜日午前3時に再起動
# /etc/systemd/system/reboot.service
[Unit]
Description = Reboot
RefuseManualStart = true
RefuseManualStop = true
[Service]
ExecStart = /sbin/reboot
[Install]
WantedBy = multi-user.target
# /etc/systemd/system/reboot.timer
[Unit]
Description = Weekly Reboot Timer
[Timer]
OnCalendar = Mon 3:00 Asia/Tokyo
[Install]
WantedBy = timers.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment