Skip to content

Commit

Permalink
Merge pull request #199 from TwizzyDizzy/main
Browse files Browse the repository at this point in the history
systemd: Ignore exit code of [email protected] instantiations
  • Loading branch information
fraenki authored Oct 9, 2024
2 parents 2a10da6 + 10a2698 commit 064f715
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifests/status.pp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
'User' => $galera::status_system_user,
'Group' => $galera::status_system_group,
'StandardInput' => 'socket',
'ExecStart' => $galera::status_script,
'ExecStart' => "-${galera::status_script}",
},
require => File[$galera::status_script],
}
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/galera_debian_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'User' => 'clustercheck',
'Group' => 'clustercheck',
'StandardInput' => 'socket',
'ExecStart' => '/usr/local/bin/clustercheck',
'ExecStart' => '-/usr/local/bin/clustercheck',
},
)
}
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/galera_redhat_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
'User' => 'clustercheck',
'Group' => 'clustercheck',
'StandardInput' => 'socket',
'ExecStart' => '/usr/local/bin/clustercheck',
'ExecStart' => '-/usr/local/bin/clustercheck',
},
)
}
Expand Down

0 comments on commit 064f715

Please sign in to comment.