summaryrefslogtreecommitdiff
path: root/security/openssh
diff options
context:
space:
mode:
authorgdt <gdt>2015-01-17 01:11:06 +0000
committergdt <gdt>2015-01-17 01:11:06 +0000
commit0beccc045dfb2fa02ffa423f6b43ac03df1f76b9 (patch)
treefc00b35d0ff61ef51accec9ffe8e053b43b63e56 /security/openssh
parent794b209f454be2e552a89c3324eb83060e5f5514 (diff)
downloadpkgsrc-0beccc045dfb2fa02ffa423f6b43ac03df1f76b9.tar.gz
Use sh not C comments in sh scripts.
From Matthias Ferdinand on pkgsrc-users.
Diffstat (limited to 'security/openssh')
-rw-r--r--security/openssh/Makefile4
-rw-r--r--security/openssh/files/sshd.sh10
2 files changed, 7 insertions, 7 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile
index 2020ac827fe..1aa7537ece6 100644
--- a/security/openssh/Makefile
+++ b/security/openssh/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.222 2014/10/09 13:44:53 wiz Exp $
+# $NetBSD: Makefile,v 1.223 2015/01/17 01:11:06 gdt Exp $
DISTNAME= openssh-6.6p1
PKGNAME= openssh-6.6.1
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= security
MASTER_SITES= ftp://ftp.openssh.com/pub/OpenBSD/OpenSSH/portable/ \
ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \
diff --git a/security/openssh/files/sshd.sh b/security/openssh/files/sshd.sh
index 25ee71563b2..039d304402c 100644
--- a/security/openssh/files/sshd.sh
+++ b/security/openssh/files/sshd.sh
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
-# $NetBSD: sshd.sh,v 1.14 2014/05/22 03:14:01 taca Exp $
+# $NetBSD: sshd.sh,v 1.15 2015/01/17 01:11:06 gdt Exp $
#
# PROVIDE: sshd
# REQUIRE: DAEMON LOGIN
@@ -42,22 +42,22 @@ sshd_keygen()
else
${keygen_command} -t rsa -f @PKG_SYSCONFDIR@/ssh_host_rsa_key -N ''
fi
-/* HAVE_ECDSA_START */
+# HAVE_ECDSA_START
if [ -f @PKG_SYSCONFDIR@/ssh_host_ecdsa_key ]; then
@ECHO@ "You already have a ECDSA host key in @PKG_SYSCONFDIR@/ssh_host_ecdsa_key"
@ECHO@ "Skipping protocol version 2 ECDSA Key Generation"
else
${keygen_command} -t ecdsa -f @PKG_SYSCONFDIR@/ssh_host_ecdsa_key -N ''
fi
-/* HAVE_ECDSA_STOP */
-/* HAVE_ED25519_START */
+# HAVE_ECDSA_STOP
+# HAVE_ED25519_START
if [ -f @PKG_SYSCONFDIR@/ssh_host_ed25519_key ]; then
@ECHO@ "You already have a ED25519 host key in @PKG_SYSCONFDIR@/ssh_host_ed25519_key"
@ECHO@ "Skipping protocol version 2 ED25519 Key Generation"
else
${keygen_command} -t ed25519 -f @PKG_SYSCONFDIR@/ssh_host_ed25519_key -N ''
fi
-/* HAVE_ED25519_STOP */
+# HAVE_ED25519_STOP
)
}