diff options
author | sergei <sergei@FreeBSD.org> | 2003-10-28 18:06:51 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-10-28 18:06:51 +0800 |
commit | 877638e3a3f4730ecdaef38983fe828684fdee60 (patch) | |
tree | a438730a0ce5dc858ff55915f80c4cd8c5e966c7 /audio/daapd/pkg-install | |
parent | ad0bf03bbb43a93f7aa788ca6982cdca2607431a (diff) | |
download | freebsd-ports-gnome-877638e3a3f4730ecdaef38983fe828684fdee60.tar.gz freebsd-ports-gnome-877638e3a3f4730ecdaef38983fe828684fdee60.tar.zst freebsd-ports-gnome-877638e3a3f4730ecdaef38983fe828684fdee60.zip |
- Now logs to /var/log/ instead of application specific location
- Sort pkg-plist
- Bump PORTREVISION
PR: 58585
Submitted by: maintainer
Approved by: krion (implicit)
Diffstat (limited to 'audio/daapd/pkg-install')
-rw-r--r-- | audio/daapd/pkg-install | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/audio/daapd/pkg-install b/audio/daapd/pkg-install index b539b4621aac..dc09fedcd663 100644 --- a/audio/daapd/pkg-install +++ b/audio/daapd/pkg-install @@ -23,18 +23,9 @@ PRE-INSTALL) else echo "---> Adding user \"%%USER%%\"" pw adduser %%USER%% -g %%GROUP%% -h - \ - -d "%%LOGDIR%%" -s "/sbin/nologin" -c "daapd User" || exit 1 + -d "/nonexistent" -s "/sbin/nologin" -c "daapd User" || exit 1 fi ;; -POST-INSTALL) - echo "---> Starting post-install script:" - - echo "---> Creating directory \"%%LOGDIR%%\"" - mkdir %%LOGDIR%% - chown %%USER%% %%LOGDIR%% - - ;; - esac |