Add Icinga elements.
Add basic install-only elements for creating images for Icinga's core and its web UI. Change-Id: I7193a3a7130543903d07efc95322487444443d9a
This commit is contained in:
parent
d0e9f98b5b
commit
ec3f7f64da
4 changed files with 21 additions and 0 deletions
2
elements/icinga-core/README.md
Normal file
2
elements/icinga-core/README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
Install Icinga's core from the distribution repository.
|
||||
|
8
elements/icinga-core/install.d/05-icinga-core
Executable file
8
elements/icinga-core/install.d/05-icinga-core
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
# install icinga-core
|
||||
|
||||
set -e
|
||||
set -o xtrace
|
||||
|
||||
DEBIAN_FRONTEND=noninteractive apt-get -y install icinga-core
|
2
elements/icinga-web/README.md
Normal file
2
elements/icinga-web/README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
Install Icinga's web interface from the distribution repository.
|
||||
|
9
elements/icinga-web/install.d/06-icinga-web
Executable file
9
elements/icinga-web/install.d/06-icinga-web
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
# install icinga-web
|
||||
|
||||
set -e
|
||||
set -o xtrace
|
||||
|
||||
DEBIAN_FRONTEND=noninteractive apt-get -y install icinga-web icinga-cgi
|
||||
|
Loading…
Reference in a new issue