~ubuntu-branches/ubuntu/trusty/monit/trusty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Sergey B Kirpichev
  • Date: 2012-12-09 17:42:20 UTC
  • Revision ID: package-import@ubuntu.com-20121209174220-9tzq5vbxr1izvmjv
Tags: 1:5.5-2
* Show error while doing an attempt to stop daemon as non-root user
  (LP: #877667)
* Use /run as pidfile location, patch 09 was added
* Drop support for "startup" option and /etc/monit/monit_delay
* Update patch 08 from upstream
* Drop monit_check_config (monitrc now non-empty by default)
* Cleanup restart target in monit.init
* Drop -c $CONFIG argument from monit options in monit.init
* Drop multiarch workarround for libssl in debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
404
404
 
405
405
# Find the right directory to put the root-mode PID file in
406
406
AC_MSG_CHECKING([pid file location])
407
 
if test -d "/var/run"
 
407
if test -d "/run"
408
408
then
409
 
        piddir="/var/run"
 
409
        piddir="/run"
 
410
elif test -d "/var/run"
 
411
    piddir="/var/run"
410
412
elif test -d "/etc"
411
413
then
412
414
        piddir="/etc"