diff options
author | mharo <mharo@FreeBSD.org> | 2001-04-03 22:07:20 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2001-04-03 22:07:20 +0000 |
commit | 72ebd45c11c66da2d61045d6130f8c0999b2ba57 (patch) | |
tree | f0bae11ba3dda3363352408bef8b6a63fc08ffef /net/netsaint/scripts | |
parent | fdc939f67dccdbf2641b9930310b516af05fe21c (diff) | |
download | FreeBSD-ports-72ebd45c11c66da2d61045d6130f8c0999b2ba57.zip FreeBSD-ports-72ebd45c11c66da2d61045d6130f8c0999b2ba57.tar.gz |
- update to netsaint 0.0.7b3
- install configuration files with .dist suffix so that users configuration
files are not deleted on package removal
- create ${PREFIX}/var/netsaint/rw directory needed for correct operation
of CGI script
- fix netsaint.log file permission problem
- depend on netsaint-plugins port
PR: 26328
Submitted by: maintainer
Diffstat (limited to 'net/netsaint/scripts')
-rw-r--r-- | net/netsaint/scripts/createuser | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netsaint/scripts/createuser b/net/netsaint/scripts/createuser index 7733a9c..0ebde3c 100644 --- a/net/netsaint/scripts/createuser +++ b/net/netsaint/scripts/createuser @@ -31,7 +31,7 @@ if( getgrnam( "netsaint" ) ) { print "netsaint user using uid $nsUID and gid $nsGID\n"; -system( "/usr/bin/chpass -a \"netsaint:*:$nsUID:$nsGID\:\:0:0:Netsaint pseudo-user:$ENV{'PREFIX'}/netsaint:/sbin/nologin\"" ); +system( "/usr/bin/chpass -a \"netsaint:*:$nsUID:$nsGID\:\:0:0:Netsaint pseudo-user:/var/netsaint:/sbin/nologin\"" ); sub append_file { local($file,@list) = @_; |