diff options
author | tom <tom@FreeBSD.org> | 2002-03-24 14:50:22 +0000 |
---|---|---|
committer | tom <tom@FreeBSD.org> | 2002-03-24 14:50:22 +0000 |
commit | ab0f16822ce57087ee104f087a51bfc86fa42f54 (patch) | |
tree | f748f2c7062cea87303c9ad708b22b8aafe3a478 /news/leafnode+ | |
parent | ad308a301d751038d96a1177c5663dfb21ecf686 (diff) | |
download | FreeBSD-ports-ab0f16822ce57087ee104f087a51bfc86fa42f54.zip FreeBSD-ports-ab0f16822ce57087ee104f087a51bfc86fa42f54.tar.gz |
Fix chown(8) syntax to work on -current
Submitted by: Alexander Leidinger <netchild@FreeBSD.org>
Diffstat (limited to 'news/leafnode+')
-rw-r--r-- | news/leafnode+/files/INSTALL.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/news/leafnode+/files/INSTALL.in b/news/leafnode+/files/INSTALL.in index dc5b702..beb587c 100644 --- a/news/leafnode+/files/INSTALL.in +++ b/news/leafnode+/files/INSTALL.in @@ -5,7 +5,7 @@ SPOOLDIR=@SPOOLDIR@ if [ x$2 = xPOST-INSTALL ]; then if [ ! -d $LIBDIR ]; then mkdir -p $LIBDIR - chown -R news.news $LIBDIR/. + chown -R news:news $LIBDIR/. fi if [ ! -d $SPOOLDIR ]; then mkdir -p $SPOOLDIR @@ -20,7 +20,7 @@ if [ x$2 = xPOST-INSTALL ]; then ${a}${b}9 ; \ done done - chown -R news.news $SPOOLDIR/. + chown -R news:news $SPOOLDIR/. chmod 2750 $SPOOLDIR fi fi |