Skip to content
Snippets Groups Projects
Commit 8946fb88 authored by Lukas Fleischer's avatar Lukas Fleischer
Browse files

Switch to systemd-sysusers.

parent e4c662cf
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ pkgname=ntp
_pkgname=ntp #-dev
_pkgver=4.2.8p11
pkgver=${_pkgver/p/.p}
pkgrel=1
pkgrel=2
pkgdesc='Network Time Protocol reference implementation'
url='http://www.ntp.org/'
license=('custom')
......@@ -16,14 +16,14 @@ backup=('etc/ntp.conf')
source=("https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${_pkgname}-${_pkgver}.tar.gz"
'ntp.conf'
'ntpd.service'
'ntpdate.service')
'ntpdate.service'
'ntp.sysusers')
sha1sums=('b20352bb76963a0ef5ec07ba99c2bb97ec6b6aeb'
'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
'0cccca872385e0142888ab48d273fec0669b30a8'
'059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
'059b382d1af0c55202e2d17f2ae065a2cbfec9ee'
'e8d1c895eabeb45b1a5f096fa5fc3c088eb3ee71')
options=('!emptydirs')
install=ntp.install
build() {
cd "${srcdir}/${_pkgname}-${_pkgver}"
......@@ -40,6 +40,7 @@ package() {
install -Dm644 ../ntp.conf "${pkgdir}"/etc/ntp.conf
install -Dm644 ../ntpd.service "${pkgdir}"/usr/lib/systemd/system/ntpd.service
install -Dm644 ../ntpdate.service "${pkgdir}"/usr/lib/systemd/system/ntpdate.service
install -Dm644 ../ntp.sysusers "${pkgdir}"/usr/lib/sysusers.d/ntp.conf
install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -d -o 87 "${pkgdir}"/var/lib/ntp
......
post_install() {
getent group ntp &>/dev/null || groupadd -g 87 ntp >/dev/null
getent passwd ntp &>/dev/null || useradd -u 87 -g ntp -d /var/lib/ntp -c 'Network Time Protocol' -s /bin/false ntp >/dev/null
true
}
g ntp 87 -
u ntp 87 "Network Time Protocol" /var/lib/ntp /bin/false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment