summaryrefslogtreecommitdiff
path: root/security/ssh
diff options
context:
space:
mode:
authorskrll <skrll>2002-02-15 10:12:28 +0000
committerskrll <skrll>2002-02-15 10:12:28 +0000
commit776a33b09bbd737dcfa1ffef38c8b5b383b0d0c4 (patch)
treed8c5da963aaf61f579edc82f096cfa181c02c55b /security/ssh
parenteee5ea82bdaedb5f556b37f1abd1e775778ada87 (diff)
downloadpkgsrc-776a33b09bbd737dcfa1ffef38c8b5b383b0d0c4.tar.gz
mkdir -> ${MKDIR}
rmdir -> ${RMDIR} rm -> ${RM} (${RM} added to PLIST_SUBST) chmod -> ${CHMOD} chown -> ${CHOWN}
Diffstat (limited to 'security/ssh')
-rw-r--r--security/ssh/PLIST4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/ssh/PLIST b/security/ssh/PLIST
index 0181675cd93..c75792b517c 100644
--- a/security/ssh/PLIST
+++ b/security/ssh/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:17:53 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2002/02/15 10:12:58 skrll Exp $
bin/ssh
bin/ssh1
bin/scp
@@ -33,7 +33,7 @@ sbin/sshd
sbin/sshd1
share/examples/ssh/ssh_config
share/examples/ssh/sshd_config
-@exec if [ ! -d @SSH_CONF_DIR@ ]; then echo "Creating directory @SSH_CONF_DIR@ for ssh config files.." ; mkdir -p @SSH_CONF_DIR@; fi
+@exec if [ ! -d @SSH_CONF_DIR@ ]; then echo "Creating directory @SSH_CONF_DIR@ for ssh config files.." ; ${MKDIR} -p @SSH_CONF_DIR@; fi
@exec if [ ! -f @SSH_CONF_DIR@/ssh_config ]; then echo "Installing example ssh_config in @SSH_CONF_DIR@.." ; ${INSTALL} -c -o root -g ${ROOT_GROUP} -m 0644 %D/share/examples/ssh/ssh_config @SSH_CONF_DIR@; fi
@exec if [ ! -f @SSH_CONF_DIR@/sshd_config ]; then echo "Installing example sshd_config in @SSH_CONF_DIR@.." ; ${INSTALL} -c -o root -g ${ROOT_GROUP} -m 0644 %D/share/examples/ssh/sshd_config @SSH_CONF_DIR@; fi
@exec if [ ! -f @SSH_CONF_DIR@/ssh_host_key ]; then echo "Generating a secret host key in @SSH_CONF_DIR@.." ; %D/bin/ssh-keygen -N "" -f @SSH_CONF_DIR@/ssh_host_key; fi