我启用并启动了以下单元
[Unit]
Description=Schedule a nightly execution at 03.15 for Backup ROOT
# Allow manual start
RefuseManualStart=no
# Allow manual stop
RefuseManualStop=no
[Timer]
#Execute job if it missed a run due to machine being off
Persistent=false
# Run every night 03.15
OnCalendar=*-*-* 03:15:00
#File describing job to execute
[email protected]
[Install]
WantedBy=timers.target
它会在每晚凌晨 3.15 点正确运行,但它也会在启动时运行,因为它会造成混乱!为什么会发生这种情况以及如何阻止它?