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.linux.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.linux.mk')
-rw-r--r-- | rcynic/rules.linux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rcynic/rules.linux.mk b/rcynic/rules.linux.mk index 82461990..abb9db64 100644 --- a/rcynic/rules.linux.mk +++ b/rcynic/rules.linux.mk @@ -1,7 +1,7 @@ # $Id$ install-user-and-group: .FORCE - if ${AWK} -F: 'BEGIN {status = 1} $$1 == ${RCYNIC_GROUP} {status = 0} END {exit status}' /etc/group; \ + @if ${AWK} -F: 'BEGIN {status = 1} $$1 == ${RCYNIC_GROUP} {status = 0} END {exit status}' /etc/group; \ then \ echo "You already have a group \"${RCYNIC_GROUP}\", so I will use it."; \ elif /usr/sbin/groupadd ${RCYNIC_GROUP}; \ @@ -12,7 +12,7 @@ install-user-and-group: .FORCE echo "Please create it, then try again."; \ exit 1; \ fi - nogroup='-N'; \ + @nogroup='-N'; \ if test -f /etc/redhat-release; then; read vendor release version < /etc/redhat-release; if test $$vendor = CentOS; then; nogroup='-n'; fi; fi; \ if ${AWK} -F: 'BEGIN {status = 1} $$1 == ${RCYNIC_USER} {status = 0} END {exit status}' /etc/passwd; \ then \ |