ec3f7f64da
Add basic install-only elements for creating images for Icinga's core and its web UI. Change-Id: I7193a3a7130543903d07efc95322487444443d9a
9 lines
128 B
Bash
Executable file
9 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# install icinga-web
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y install icinga-web icinga-cgi
|
|
|