Desejo executar periodicamente um comando baseado em ruby gem. Estou usando o RVM e seguindo o tutorial descrito aqui .
Minha tarefa ruby é chamada daily_checks.rb
e é a seguinte:
#!/usr/bin/env ruby
puts 'in here'
Dir.chdir('/Users/Chris/Documents/Sites/mentor') do
audit = `bundle-audit`
system(%(osascript -e 'display notification "#{audit}" with title "bundle-audit"'))
end
Eu configurei um alias RVM e um arquivo bash em /usr/local/bin/regular_checks.sh
/Users/Chris/.rvm/wrappers/regular_checks/ruby /Users/Chris/Documents/Sites/mentor/script/daily_checks.rb
Quando executo /usr/local/bin/regular_checks.sh
, o arquivo ruby é executado e funciona com sucesso.
Em seguida, configurei uma lista em /Users/Chris/Library/LaunchAgents/local.temp.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>Disabled</key>
<false/>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/bin:/usr/bin:/usr/local/bin</string>
</dict>
<key>Label</key>
<string>local.temp</string>
<key>LaunchOnlyOnce</key>
<false/>
<key>Program</key>
<string>/usr/local/bin/regular_checks.sh</string>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>/tmp/test.stderr</string>
<key>StandardOutPath</key>
<string>/tmp/test.stdout</string>
<key>StartInterval</key>
<integer>300</integer>
</dict>
</plist>
Quando executo esse trabalho usando launchControl, o trabalho parece falhar com o erro número 78. O puts 'in here'
arquivo ruby não é executado.
As permissões de arquivo são as mesmas do tutorial, ou seja,
-rwxr--r-- 1 Chris staff 699 24 Nov 20:16 local.temp.plist
-rwxr-xr-x 1 Chris admin 111 24 Nov 20:10 /usr/local/bin/regular_checks.sh
-rwxr-xr-x 1 Chris admin 207 25 Nov 13:38 daily_checks.rb
O que é o erro 78 e por que o arquivo não está sendo executado corretamente?