diff options
author | Rob Austein <sra@hactrn.net> | 2013-02-23 12:22:10 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-02-23 12:22:10 +0000 |
commit | f2be72554bb0a32bec2bef6bd298b17e04103432 (patch) | |
tree | 37b9470525db814c0d4fa19ba0be0905c792035a /rcynic/rules.freebsd.mk | |
parent | 427d4111add9209a86339b5bace8809c6d4f72fa (diff) |
More post-installation: add rpki-rtr listener to /etc/services and
/etc/inetd.conf, create a few missing directories.
svn path=/branches/tk377/; revision=5056
Diffstat (limited to 'rcynic/rules.freebsd.mk')
-rw-r--r-- | rcynic/rules.freebsd.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rcynic/rules.freebsd.mk b/rcynic/rules.freebsd.mk index dd9e0a01..f5391ce8 100644 --- a/rcynic/rules.freebsd.mk +++ b/rcynic/rules.freebsd.mk @@ -1,7 +1,7 @@ # $Id$ install-user-and-group: .FORCE - if /usr/sbin/pw groupshow "${RCYNIC_GROUP}" 2>/dev/null; \ + @if /usr/sbin/pw groupshow "${RCYNIC_GROUP}" 2>/dev/null; \ then \ echo "You already have a group \"${RCYNIC_GROUP}\", so I will use it."; \ elif /usr/sbin/pw groupadd ${RCYNIC_GROUP}; \ @@ -12,7 +12,7 @@ install-user-and-group: .FORCE echo "Please create it, then try again."; \ exit 1; \ fi - if /usr/sbin/pw usershow "${RCYNIC_USER}" 2>/dev/null; \ + @if /usr/sbin/pw usershow "${RCYNIC_USER}" 2>/dev/null; \ then \ echo "You already have a user \"${RCYNIC_USER}\", so I will use it."; \ elif /usr/sbin/pw useradd ${RCYNIC_USER} -g ${RCYNIC_GROUP} -h - -d /nonexistant -s /usr/sbin/nologin -c "${RCYNIC_GECOS}"; \ |