Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
core: fix retain status file over an init script reload #1579
Browse files Browse the repository at this point in the history
refs #1579
  • Loading branch information
Michael Friedrich committed Jun 4, 2011
1 parent 96cea67 commit f6df030
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changelog
Expand Up @@ -8,6 +8,7 @@ ENHANCEMENTS

FIXES
* core: remove duplicated unlinks for check result files with multiple results #1615
* core: fix retain status file over an init script reload #1579

* classic ui: fix cross site scripting vulnerability in config.cgi on config expander arguments #1605

Expand Down
4 changes: 2 additions & 2 deletions daemon-init.in
Expand Up @@ -130,7 +130,7 @@ start(){
exit 1
else
echo "Icinga PID $IcingaPID not running. Removing lockfile."
rm -f $IcingaStatusFile $IcingaRunFile $IcingaLockDir/$IcingaLockFile $IcingaCommandFile
rm -f $IcingaRunFile $IcingaLockDir/$IcingaLockFile
fi
fi

Expand Down Expand Up @@ -180,7 +180,7 @@ case "$1" in
echo 'Warning - icinga did not exit in a timely manner. Please try again.'
else
echo 'Stopping icinga done.'
rm -f $IcingaStatusFile $IcingaRunFile $IcingaLockDir/$IcingaLockFile $IcingaCommandFile
rm -f $IcingaRunFile $IcingaLockDir/$IcingaLockFile
fi

;;
Expand Down

0 comments on commit f6df030

Please sign in to comment.