Ho uno script che desidero impostare per le 3:30 del mattino ogni giorno e viene eseguito all'ora impostata, ma viene eseguito anche ad ogni riavvio del computer che non desidero.
Come faccio a fare in modo che funzioni solo con la pianificazione in atto e non venga eseguita ad ogni avvio del computer?
Ecco il mio plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.xxxxx.xxxx</string>
<key>ProgramArguments</key>
<array>
<string>/Library/Scripts/script.sh</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Minute</key>
<integer>30</integer>
<key>Hour</key>
<integer>3</integer>
</dict>
</dict>
</plist>