mirror of https://github.com/Icinga/icinga2.git
parent
95b5e1d67b
commit
4b89e1b45f
|
@ -20,6 +20,10 @@ host_count=0
|
|||
service_count=0
|
||||
|
||||
for hostFile in $sysconfdir/icinga2/conf.d/hosts/*.conf; do
|
||||
if [ ! -e $hostFile ]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
host_count=$(($host_count + 1))
|
||||
|
||||
host=`basename $hostFile .conf`
|
||||
|
@ -44,6 +48,10 @@ for hostFile in $sysconfdir/icinga2/conf.d/hosts/*.conf; do
|
|||
if [ ! -e $sysconfdir/icinga2/repository.d/hosts/$target ]; then
|
||||
mv $sysconfdir/icinga2/conf.d/hosts/$host $sysconfdir/icinga2/repository.d/hosts/$target
|
||||
for file in $sysconfdir/icinga2/repository.d/hosts/$target/*.conf; do
|
||||
if [ ! -e $file ]; then
|
||||
break
|
||||
fi
|
||||
|
||||
sed "s/localhost/$target/g" $file > $file.tmp
|
||||
mv $file.tmp $file
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue