9 lines
141 B
Bash
9 lines
141 B
Bash
|
#!/bin/bash
|
||
|
# this script runs in the rpm_test environment
|
||
|
|
||
|
PACKAGES=( icinga-php-library )
|
||
|
|
||
|
icinga-build-rpm-install "${PACKAGES[@]}"
|
||
|
|
||
|
bash
|