Erro ao criar uma tarefa do ruby launchd com o RVM no OS X

0

Eu quero executar periodicamente um comando baseado em gems ruby. Eu estou usando o RVM e seguindo o tutorial definido aqui .

Minha tarefa ruby é chamada de 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.

Eu configurei um plist 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 o launchControl, a tarefa parece falhar com o número de erro 78. O puts 'in here' no arquivo ruby não é executado.

As permissões do arquivo são as mesmas do tutorial, por exemplo

-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á funcionando corretamente?

    
por Obromios 28.11.2015 / 07:51

1 resposta

0

Parece que o erro 78 ocorre porque o arquivo /usr/local/bin/regular_checks.sh não tem #!/bin/bash como a primeira linha. O conteúdo completo do arquivo deve ser

#!/bin/bash
/Users/Chris/.rvm/wrappers/regular_checks/ruby /Users/Chris/Documents/Sites/mentor/script/daily_checks.rb
    
por 14.12.2015 / 10:21