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
I have the following packages:
rundeck-1.5-1.6.GA.noarch rundeck-config-1.5-1.6.GA.noarch coreutils-8.4-19.el6.x86_64 (provides /sbin/runuser) coreutils-libs-8.4-19.el6.x86_64
When I run service rundeckd start, the following line gets written to /var/log/rundeck/service.log and the service doesn't start:
service rundeckd start
runuser: /bin/nologin: No such file or directory
Changing /etc/init.d/rundeckd like this fixed the issue: From:
/etc/init.d/rundeckd
nohup runuser -l rundeck -c "$rundeckd" 2>&1 >>$servicelog &
To:
nohup runuser -s /bin/bash -l rundeck -c "$rundeckd" 2>&1 >>$servicelog &
The text was updated successfully, but these errors were encountered:
thanks for the fix!
Sorry, something went wrong.
16e35f0
ahonor
No branches or pull requests
I have the following packages:
When I run
service rundeckd start
, the following line gets written to /var/log/rundeck/service.log and the service doesn't start:Changing
/etc/init.d/rundeckd
like this fixed the issue:From:
To:
The text was updated successfully, but these errors were encountered: