ec3f7f64da
Add basic install-only elements for creating images for Icinga's core and its web UI. Change-Id: I7193a3a7130543903d07efc95322487444443d9a
10 lines
128 B
Bash
Executable File
10 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
|
|
|