Fix error message in migrate-hosts

fixes #7528
This commit is contained in:
Gunnar Beutner 2014-10-31 13:47:34 +01:00
parent 95b5e1d67b
commit 4b89e1b45f
1 changed files with 8 additions and 0 deletions

View File

@ -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