diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2005-08-14 15:20:16 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-14 15:20:16 +0000 |
commit | 94506d0460100a669ad990f445c0fdd4ac4c4cda (patch) | |
tree | b56377359a8b3ba087592b606fa1af3725d81371 /packages | |
parent | f92150b31c6a8a8306d365af6e2ce46104b1128d (diff) | |
parent | b0161b42945a9c853e9cf9e42892480c0ff634b3 (diff) |
merge of 0b4f1ff980558815d31881bb337ccd459fa4af3a
and 703248fa953456fdca6dcb68233a4bb5079fa7d4
Diffstat (limited to 'packages')
-rw-r--r-- | packages/openntpd/openntpd_3.7p1.bb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/packages/openntpd/openntpd_3.7p1.bb b/packages/openntpd/openntpd_3.7p1.bb index 3ca809f002..5204f34bb3 100644 --- a/packages/openntpd/openntpd_3.7p1.bb +++ b/packages/openntpd/openntpd_3.7p1.bb @@ -6,7 +6,7 @@ LICENSE = "BSD" SECTION = "console/network" MAINTAINER = "Oyvind Repvik <nail@nslu2-linux.org>" DEPENDS = "timezones" -PR="r7" +PR="r8" SRC_URI = "http://www.zip.com.au/~dtucker/openntpd/release/openntpd-${PV}.tar.gz \ file://autofoo.patch;patch=1 \ @@ -22,7 +22,7 @@ INITSCRIPT_PARAMS = "defaults" inherit autotools update-rc.d EXTRA_OECONF += "CFLAGS=-DUSE_ADJTIMEX --disable-strip --prefix=/usr \ - --sysconfdir=/etc --with-privsep-path=/var/shared/empty \ + --sysconfdir=/etc --with-privsep-path=/${localstatedir}/shared/empty \ --with-privsep-user=ntpd" do_install_prepend() { @@ -34,11 +34,12 @@ do_install_append() { } pkg_postrm () { - grep ntpd /etc/passwd && deluser ntpd + grep ntpd ${sysconfdir}/passwd && deluser ntpd } pkg_postinst () { - grep ntpd /etc/passwd || adduser --disabled-password --home=/var/shared/empty --ingroup nogroup ntpd - chown root:root /var/shared/empty + mkdir -p ${localstatedir}/shared/empty + grep ntpd ${sysconfdir}/passwd || adduser --disabled-password --home=${localstatedir}/shared/empty --ingroup nogroup ntpd + chown root:root ${localstatedir}/shared/empty } |