From: Zeljko Boros Date: Tue, 20 Apr 2021 12:09:08 +0000 (+0200) Subject: fixed typo in control X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=openssh-cn.git;a=commitdiff_plain;h=HEAD;hp=07198eafae5e6756e1cfcb3699b10443832b2f86 fixed typo in control --- diff --git a/README.CARNet b/README.CARNET similarity index 100% rename from README.CARNet rename to README.CARNET diff --git a/debian/changelog b/debian/changelog index 3a647b7..4a5a13b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +openssh-cn (2:7.9p1+cn10u1) stable; urgency=low + + * Prva inačica paketa za CARNET Debian 10 (buster) + * Ovisnost o init-system-helpers 1.56+nmu1 zbog invoke-rc.d + + -- Zeljko Boros Thu, 20 Aug 2020 14:01:15 +0200 + +openssh-cn (2:6.7p1.5) stable; urgency=low + + * Prva inacica paketa za izdanje stretch + + -- Zeljko Boros Wed, 12 Dec 2018 11:11:23 +0200 + openssh-cn (2:6.7p1.1) stable; urgency=low * Prva inacica paketa za izdanje jessie diff --git a/debian/control b/debian/control index 95bcd4f..b382d21 100644 --- a/debian/control +++ b/debian/control @@ -4,20 +4,11 @@ Priority: optional Uploaders: Zeljko Boros Maintainer: Grupa za izradu paketa Build-Depends: debhelper (>= 9) -Standards-Version: 3.9.6 +Standards-Version: 3.9.8 Package: openssh-cn Architecture: all -Depends: carnet-tools-cn (>= 3.1.0), openssh-client (>= 1:6.7p1-5+deb8u3), openssh-server (>= 1:6.7p1-5+deb8u3), ${misc:Depends} -Description: secure shell server, an rshd replacement - This is the portable version of OpenSSH, a free implementation of - the Secure Shell protocol as specified by the IETF secsh working - group. - . - Ssh (Secure Shell) is a program for logging into a remote machine - and for executing commands on a remote machine. - It provides secure encrypted communications between two untrusted - hosts over an insecure network. X11 connections and arbitrary TCP/IP - ports can also be forwarded over the secure channel. - It is intended as a replacement for rlogin, rsh and rcp, and can be - used to provide applications with a secure communication channel. +Depends: init-system-helpers (>=1.56+nmu1), carnet-tools-cn (>= 3.3.0+cn10u1), openssh-client (>= 1:7.9p1-10+deb10u2), openssh-server (>= 1:7.9p1-10+deb10u2), ${misc:Depends} +Description: SSH - secure shell server, zamjena za rshd + OpenSSH je implementacija protokola Secure Shell koji je specificirala + radna skupina IETF-a 'secsh'. diff --git a/debian/docs b/debian/docs index 8f6e250..db3c4b3 100644 --- a/debian/docs +++ b/debian/docs @@ -1 +1 @@ -README.CARNet +README.CARNET diff --git a/debian/postinst b/debian/postinst index 4a87744..fc0f9c7 100755 --- a/debian/postinst +++ b/debian/postinst @@ -21,10 +21,12 @@ if [ -f /etc/ssh/sshd_config ]; then fi # restart -if [ -x /usr/sbin/invoke-rc.d ]; then - [ -x /etc/init.d/ssh ] && invoke-rc.d ssh restart -else - [ -x /etc/init.d/ssh ] && /etc/init.d/ssh restart -fi +invoke-rc.d ssh restart + +#if [ -x /usr/sbin/invoke-rc.d ]; then +# [ -x /etc/init.d/ssh ] && invoke-rc.d ssh restart +#else +# [ -x /etc/init.d/ssh ] && /etc/init.d/ssh restart +#fi #DEBHELPER#