mirror of https://github.com/Icinga/icinga2.git
Install PKI utils.
This commit is contained in:
parent
38e969c01c
commit
175bf245a8
|
@ -199,6 +199,7 @@ lib/config/Makefile
|
||||||
lib/icinga/Makefile
|
lib/icinga/Makefile
|
||||||
lib/db_ido/Makefile
|
lib/db_ido/Makefile
|
||||||
lib/python/Makefile
|
lib/python/Makefile
|
||||||
|
pki/Makefile
|
||||||
test/Makefile
|
test/Makefile
|
||||||
third-party/Makefile
|
third-party/Makefile
|
||||||
third-party/cJSON/Makefile
|
third-party/cJSON/Makefile
|
||||||
|
|
|
@ -230,6 +230,9 @@ fi
|
||||||
%config(noreplace) %attr(0640,%{icinga_user},%{icinga_group}) %{_sysconfdir}/%{name}/features-enabled/*.conf
|
%config(noreplace) %attr(0640,%{icinga_user},%{icinga_group}) %{_sysconfdir}/%{name}/features-enabled/*.conf
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_bindir}/icinga2-migrate-config
|
%{_bindir}/icinga2-migrate-config
|
||||||
|
%{_bindir}/icinga2-build-ca
|
||||||
|
%{_bindir}/icinga2-build-key
|
||||||
|
%{_bindir}/icinga2-pkifuncs
|
||||||
%{_sbindir}/i2enfeature
|
%{_sbindir}/i2enfeature
|
||||||
%{_sbindir}/i2disfeature
|
%{_sbindir}/i2disfeature
|
||||||
%exclude %{_libdir}/%{name}/libdb_ido_mysql*
|
%exclude %{_libdir}/%{name}/libdb_ido_mysql*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
source ./pkifuncs
|
source $(dirname -- $0)/icinga2-pkifuncs
|
||||||
|
|
||||||
check_pki_dir
|
check_pki_dir
|
||||||
|
|
|
@ -6,7 +6,7 @@ fi
|
||||||
|
|
||||||
name=$1
|
name=$1
|
||||||
|
|
||||||
source ./pkifuncs
|
source $(dirname -- $0)/icinga2-pkifuncs
|
||||||
|
|
||||||
check_pki_dir
|
check_pki_dir
|
||||||
|
|
Loading…
Reference in New Issue