-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the icinga ca list command line to address changes in Icinga 2…
… 2.11 This patch addresses a change in the upcoming 2.11 Icinga 2 that will require `--all` in the ca list command to get all the certificates (though after 7 days they should be now deleted by default). This patch is backwards compatible by checking the running icinga2 version and if it's lower than 2.11, use the old command line. Please beware that you need to manually need to edit your sudoers to cope with the new parameter, so please check README. Basically you have to change from ``` Cmnd_Alias CA_CMDS = /usr/sbin/icinga2 ca list, /usr/sbin/icinga2 ca sign * ``` to ``` Cmnd_Alias CA_CMDS = /usr/sbin/icinga2 ca list, /usr/sbin/icinga2 ca sign *, /usr/sbin/icinga2 ca list --all ``` For more information see #6
- Loading branch information
1 parent
8e83892
commit 6adab78
Showing
3 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: Ca | ||
Version: 1.0.2 | ||
Version: 1.0.3 | ||
Depends: monitoring (>= 2.5.1) | ||
Description: Icinga CA Manager | ||
This module manages the certificate requests for Icinga CA. |