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
After several tries, comment in "add-project.sh" line 3: #set -eu That prevents in Centos 7.3 the creation of the nodes in the "for" statement
#set -eu
And in file "install-rundeck.sh, line 170, correct the file to have: rd adhoc -p $PROJECT --follow --filter 'tags: anvils' -- whoami \&\& hostname instead of rd adhoc -p $PROJECT --follow --filter 'tags: anvils' -- whoami \&\& "echo -- \${node.description}"
rd adhoc -p $PROJECT --follow --filter 'tags: anvils' -- whoami \&\& hostname
rd adhoc -p $PROJECT --follow --filter 'tags: anvils' -- whoami \&\& "echo -- \${node.description}"
Also modify the file "install-rundeck.sh" to have: if ! grep "Grails application running" /var/log/rundeck/service.log line 144
if ! grep "Grails application running" /var/log/rundeck/service.log
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After several tries, comment in "add-project.sh" line 3:
#set -eu
That prevents in Centos 7.3 the creation of the nodes in the "for" statement
And in file "install-rundeck.sh, line 170, correct the file to have:
rd adhoc -p $PROJECT --follow --filter 'tags: anvils' -- whoami \&\& hostname
instead of
rd adhoc -p $PROJECT --follow --filter 'tags: anvils' -- whoami \&\& "echo -- \${node.description}"
Also modify the file "install-rundeck.sh" to have:
if ! grep "Grails application running" /var/log/rundeck/service.log
line 144
The text was updated successfully, but these errors were encountered: