main/chrony: set default PID file path

This commit is contained in:
tcely 2018-11-19 20:15:12 -05:00 committed by Sören Tempel
parent 65662ceedf
commit b2ec731f63
2 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=chrony
pkgver=3.4
pkgrel=1
pkgrel=2
_ver=${pkgver/_/-}
pkgdesc="NTP client and server programs"
url="https://chrony.tuxfamily.org"
@ -88,7 +88,7 @@ sha512sums="4fbb0311c8d363a87edd6f5d1be3d8554da169f260ba23c1ad9e8c567808258c6fd7
067d47224a8c075ec8f63ffc58e65b030fdf228a72c4f03d50a2f2c17414da65bb5d27c7c2e4ba99e909f452041db83eaebe3c9e34c0c8fce18e05ebb489735e fix-tests.patch
b26581ed32680585edea5b8163a0062a87f648394c0f363c77a7d01a36608fcf4d005d9e6ab179ed2827b8a08f598f7bad4801bb5e135cad5107eb77fb19b247 max_resolve_interval.patch
0490770cc214b4ccf76470420e0b33e6c41ad16344d6503973a28346b002e2cee441e9ae982be1a8f21696da26f436f2ce36a5201e9628becb83bad3487d9170 chronyd.confd
60d6aab60132b11e82888b755a47aa6ae2949db07016b475e7bce53ed5083c888ab88f3b53e87bfa7396f0559f6870c28816b395361645dda157ab7649b28236 chronyd.initd
38bad37f75f8465a8494b5eb672fec314a4a15db66e4546cd512d94c19b74e9accd748f4bce238bb1916dd6fb6ab9d1e937e11f83d228dff2264be754cf9e375 chronyd.initd
ab38f06bf45888846778ad935e24abb30d13b6805e9a750bc694ff953695fa8c5b33aac560f5f7f96dc46031c1a38660e5c418b6fce6fb34a87908a9a3c99357 chrony.logrotate
0ae453fca3461b6e56a32a9eb6be0d448c39bf0279583222ab2fecef307e1113f082d4e86f957e4baac4f223c5c57804cdea97322678009f3413ab99d54694b6 chrony.conf
eb11fc19243d1789016d88eb7645bfe67c46304547781489bf36eb1dd4c252d523681ff835a6488fa0ef62b6b9e2f781c672279f4439f5d5640a3f214a113048 timepps.h"

View File

@ -4,6 +4,7 @@
# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/files/chronyd.rc,v 1.8 2007/03/22 14:32:09 tove Exp $
description="NTP daemon"
PIDFILE="/var/run/chrony/chronyd.pid"
depend() {
need net
@ -32,7 +33,10 @@ checkconfig() {
# Actually, I tried it, and chrony seems to ignore the pidfile
# option. I'm going to leave it here anyway, since you never
# know if it might be handy
PIDFILE=`awk '/^ *pidfile/{print $2}' "${CFGFILE}"`
_cfg_PIDFILE=`awk '/^ *pidfile/{print $2}' "${CFGFILE}"`
if [ -n "$_cfg_PIDFILE" ] ; then
PIDFILE="$_cfg_PIDFILE"
fi
fi
return 0
}
@ -49,8 +53,6 @@ start() {
checkconfig || return $?
setxtrarg
[ -n "${PIDFILE}" ] || PIDFILE=/var/run/chrony/chronyd.pid
local daemon_args=
if yesno "$FAST_STARTUP"; then
ARGS="${ARGS} -n"
@ -68,8 +70,6 @@ start() {
stop() {
checkconfig || return $?
[ -n "${PIDFILE}" ] || PIDFILE=/var/run/chrony/chronyd.pid
ebegin "Stopping chronyd"
start-stop-daemon --stop --quiet \
--pidfile "${PIDFILE}"