-
-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
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
Add Job management #530
Add Job management #530
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good for me
Add param to notify connection check when rundeck::service is changed
1be6e72
to
efae965
Compare
@bastelfreak tests failing due to: read timeout reached |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor shell suggestions. Regarding CentOS 8, I guess we can ignore this 😒
files/rd_job_diff.sh
Outdated
diff "$path" "$temp_file" &> /dev/null | ||
DIFF_STATUS=$? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can rely on cmp(1) to silently compare files instead of generating a diff only to discard it.
diff "$path" "$temp_file" &> /dev/null | |
DIFF_STATUS=$? | |
cmp -s "$path" "$temp_file" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the script do you like this approach better?
efae965
to
d19c8bc
Compare
d19c8bc
to
b72ed4a
Compare
Pull Request (PR) description
This PR adds a way to manage jobs through cli and adds a parameter to notify cli connection check
This Pull Request (PR) fixes the following issues
Fixes #33
Fixes #458