pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/openssh Use sh not C comments in sh scripts.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/905ec30c8b7d
branches:  trunk
changeset: 644744:905ec30c8b7d
user:      gdt <gdt%pkgsrc.org@localhost>
date:      Sat Jan 17 01:11:06 2015 +0000

description:
Use sh not C comments in sh scripts.

>From Matthias Ferdinand on pkgsrc-users.

diffstat:

 security/openssh/Makefile      |   4 ++--
 security/openssh/files/sshd.sh |  10 +++++-----
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (52 lines):

diff -r 735577396d17 -r 905ec30c8b7d security/openssh/Makefile
--- a/security/openssh/Makefile Sat Jan 17 00:32:47 2015 +0000
+++ b/security/openssh/Makefile Sat Jan 17 01:11:06 2015 +0000
@@ -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 -r 735577396d17 -r 905ec30c8b7d security/openssh/files/sshd.sh
--- a/security/openssh/files/sshd.sh    Sat Jan 17 00:32:47 2015 +0000
+++ b/security/openssh/files/sshd.sh    Sat Jan 17 01:11:06 2015 +0000
@@ -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 @@
        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
        )
 }
 



Home | Main Index | Thread Index | Old Index