diff options
author | gdt <gdt@pkgsrc.org> | 2015-01-17 01:11:06 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2015-01-17 01:11:06 +0000 |
commit | b519127e7d9eff45aeb1b5bdd3db25714c405a7d (patch) | |
tree | fc00b35d0ff61ef51accec9ffe8e053b43b63e56 /security | |
parent | 6a3a200463bf03a50f9ad54d533d576e6310cc41 (diff) | |
download | pkgsrc-b519127e7d9eff45aeb1b5bdd3db25714c405a7d.tar.gz |
Use sh not C comments in sh scripts.
From Matthias Ferdinand on pkgsrc-users.
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 4 | ||||
-rw-r--r-- | security/openssh/files/sshd.sh | 10 |
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 ) } |