We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In few projects, when the cron is setup it was working properly. But recently i faced this issue in one of the projects.
Cron is setup, But it was not throwing error, even in logs could not see it. So
/bin/bash -l -c '/usr/local/bin/backup perform -t brandaid_vc_prod' >> /home/anbu31/daily-backup.log 2>&1
Then we got the error like
'ruby_executable_hooks': No such file or directory
sudo nano /usr/local/bin/backup
From #!/usr/local/bin ruby_executable_hooks
#!/usr/local/bin ruby_executable_hooks
To #!/usr/local/bin/ruby
#!/usr/local/bin/ruby
Solved the problem. I would suggest, we add this to the documentation, Because it took quite sometime to solve this.
The text was updated successfully, but these errors were encountered:
@tambakoo @anondita - this issue is closed?
Sorry, something went wrong.
tambakoo
No branches or pull requests
In few projects, when the cron is setup it was working properly. But recently i faced this issue in one of the projects.
Cron is setup, But it was not throwing error, even in logs could not see it. So
/bin/bash -l -c '/usr/local/bin/backup perform -t brandaid_vc_prod' >> /home/anbu31/daily-backup.log 2>&1
Then we got the error like
'ruby_executable_hooks': No such file or directory
sudo nano /usr/local/bin/backup
From
#!/usr/local/bin ruby_executable_hooks
To
#!/usr/local/bin/ruby
Solved the problem. I would suggest, we add this to the documentation, Because it took quite sometime to solve this.
The text was updated successfully, but these errors were encountered: