mysqldump を実行し、次に bash から mysql を挿入するスクリプトがあります。ターミナルからでも、root (LaunchD が実行されていると思われます) として正常に動作しますが、launchd から mysql 挿入を実行するのではなく、mysqldump を実行します。
スクリプトは次のとおりです。
#!/bin/bash
mysqldump -u root -pmypass my_db | gzip -9 > /path/to/dump.sql.gz
mysql -u root -pmypass my_db2 < /path/to/insert.sql
および私の com.me.BackupThing.plist (/Library/LaunchAgents から) は、mysql コマンド以外のすべてを実行および実行します。
<?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.me.BackupThing</string>
<key>ProgramArguments</key>
<array>
<string>/full/path/to/above/script.sh</string>
</array>
<key>QueueDirectories</key>
<array/>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>01</integer>
<key>Minute</key>
<integer>00</integer>
</dict>
<key>WatchPaths</key>
<array/>
<key>UserName</key>
<string>administrator</string>
</dict>
</plist>
すべては root としてターミナルから実行され、mysql の bin は roots コマンド パスにエクスポートされます。
launchd からの mysql コマンドを無視するのはなぜですか?
編集
解決のためのarco444のおかげで、何らかの理由でmysqlにフルパスが必要でした。新しいスクリプトは次のとおりです。
#!/bin/bash
mysqldump -u root -pmypass my_db | gzip -9 > /path/to/dump.sql.gz
/path/to/mysql/bin/mysql -u root -pmypass my_db2 < /path/to/insert.sql