Skip to content
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

fix check core_pattern.yaml #253

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions handler/checker/tasks/observer/system/core_pattern.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ task:
verify: '[[ $core_pattern != *" "* ]]'
err_msg: 'kernel.core_pattern: #{core_pattern} , is not recommended for configuring functions other than the specified core path'
- type: ssh
ssh: 'dirname ${core_pattern}'
ssh: 'dirname "${core_pattern}"'
result:
set_value: core_path
verify: '[ -d "$core_path" ]'
err_msg: 'core_path: #{core_path} is not exist. Please create it.'
#d
- type: ssh
ssh: "df \"$directory\" | awk 'NR==2 {print $4}'"
ssh: "df \"#{core_path}\" | awk 'NR==2 {print $4}'"
result:
set_value: core_path_free_space
verify_type: min
Expand Down
Loading