diff options
author | skrll <skrll> | 2002-02-15 10:12:28 +0000 |
---|---|---|
committer | skrll <skrll> | 2002-02-15 10:12:28 +0000 |
commit | 776a33b09bbd737dcfa1ffef38c8b5b383b0d0c4 (patch) | |
tree | d8c5da963aaf61f579edc82f096cfa181c02c55b /news/nntpcache | |
parent | eee5ea82bdaedb5f556b37f1abd1e775778ada87 (diff) | |
download | pkgsrc-776a33b09bbd737dcfa1ffef38c8b5b383b0d0c4.tar.gz |
mkdir -> ${MKDIR}
rmdir -> ${RMDIR}
rm -> ${RM} (${RM} added to PLIST_SUBST)
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'news/nntpcache')
-rw-r--r-- | news/nntpcache/PLIST | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/news/nntpcache/PLIST b/news/nntpcache/PLIST index 226ae2b3b13..37e01ec6667 100644 --- a/news/nntpcache/PLIST +++ b/news/nntpcache/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 21:03:47 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/15 10:12:56 skrll Exp $ etc/nntpcache/VERSION etc/nntpcache/innreport.conf-dist etc/nntpcache/innreport.pl @@ -13,10 +13,10 @@ etc/nntpcache/spam.filter etc/nntpcache/http/index.html etc/nntpcache/http/moose.gif etc/nntpcache/http/nntpcache.jpg -@exec mkdir -p %D/etc/nntpcache/http/innreport/pics -@exec chown -R news:news %D/etc/nntpcache -@exec chmod 700 %D/etc/nntpcache -@unexec rmdir -p %D/etc/nntpcache/http/innreport/pics 2>/dev/null || true +@exec ${MKDIR} -p %D/etc/nntpcache/http/innreport/pics +@exec ${CHOWN} -R news:news %D/etc/nntpcache +@exec ${CHMOD} 700 %D/etc/nntpcache +@unexec ${RMDIR} -p %D/etc/nntpcache/http/innreport/pics 2>/dev/null || true etc/rc.d/nntpcached sbin/innreport.sh sbin/newshound @@ -26,12 +26,12 @@ libexec/nntpcache-gdb.sh libexec/nntpcache.gdb man/man8/newshound.8 man/man8/nntpcached.8 -@unexec rmdir etc/nntpcache 2>/dev/null || true -@exec mkdir -p /var/spool/nntpcache +@unexec ${RMDIR} etc/nntpcache 2>/dev/null || true +@exec ${MKDIR} -p /var/spool/nntpcache @exec cp %D/etc/nntpcache/VERSION /var/spool/nntpcache/VERSION -@exec chown -R news:news /var/spool/nntpcache -@exec chmod 700 /var/spool/nntpcache -@unexec rm -rf /var/spool/nntpcache +@exec ${CHOWN} -R news:news /var/spool/nntpcache +@exec ${CHMOD} 700 /var/spool/nntpcache +@unexec ${RM} -rf /var/spool/nntpcache share/doc/nntpcache/INSTALL share/doc/nntpcache/README share/doc/nntpcache/FAQ |