Converti cronjob in launchctl plist


0

Dovrei convertire questo cronjob in un programma di avvio.

È possibile?

0 8-18 * * 1-5 /usr/bin/curl -s --data "par1=a&par2=b&press=OK" http://mydomain.com/file.php /dev/null

Risposte:


3

Fondamentalmente è possibile salvare un elenco di proprietà come questo ~/Libary/LaunchAgents/com.superuser.408777.pliste caricarlo con launchctl load ~/Libary/LaunchAgents/com.superuser.408777.plisto eseguendo il logout e il login.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.superuser.408777</string>
    <key>ProgramArguments</key>
    <array>
        <string>curl</string>
        <string>--data</string>
        <string>par1=a&par2=b&press=OK</string>
        <string>http://mydomain.com/file.php</string>
    </array>
<!--    <key>Program</key>
    <string>/absolute/path/to/script</string> -->
    <key>StartCalendarInterval</key>
    <dict>
        <key>Weekday</key>
        <integer>1</integer>
        <key>Hour</key>
        <integer>8</integer>
    </dict>
    <dict>
        <key>Weekday</key>
        <integer>1</integer>
        <key>Day</key>
        <integer>9</integer>
    </dict>
<!--    <key>StartInterval</key>
    <integer>3600</integer> --> this would just run the program arguments every hour
    <key>KeepAlive</key>
    <true/>
</dict>
</plist>

Per quanto ne so, non è possibile specificare intervalli di date come ore 8-18 e giorni 1-5, oltre a elencare ciascuna combinazione singolarmente. Tuttavia, è possibile eseguire uno script esterno ogni ora e uscire a seconda della data.

weekday=$(date +%w)
hour=$(date +%H)
[[ $weekday -le 0 || $weekday -ge 6 || $hour -le 7 || $hour -ge 19 ]] && exit
curl -s --data "par1=a&par2=b&press=OK" http://mydomain.com/file.php /dev/null

Pollice in giù ad Apple per non supportare virgole o trattini per specificare intervalli e giorni. È un file plist molto lungo e difficile. Ho inviato un rapporto di feedback su OSX ad Apple proprio ora.
Volomike,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.