fixed typo in control master
authorZeljko Boros <Zeljko.Boros@carnet.hr>
Tue, 20 Apr 2021 12:09:08 +0000 (14:09 +0200)
committerZeljko Boros <Zeljko.Boros@carnet.hr>
Tue, 20 Apr 2021 12:09:08 +0000 (14:09 +0200)
README.CARNET [moved from README.CARNet with 100% similarity]
debian/changelog
debian/control
debian/docs
debian/postinst

similarity index 100%
rename from README.CARNet
rename to README.CARNET
index 3a647b7..4a5a13b 100644 (file)
@@ -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 <Zeljko.Boros@carnet.hr>  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 <Zeljko.Boros@CARNet.hr>  Wed, 12 Dec 2018 11:11:23 +0200
+
 openssh-cn (2:6.7p1.1) stable; urgency=low
 
   * Prva inacica paketa za izdanje jessie
index 95bcd4f..b382d21 100644 (file)
@@ -4,20 +4,11 @@ Priority: optional
 Uploaders: Zeljko Boros <Zeljko.Boros@carnet.hr>
 Maintainer: Grupa za izradu paketa <paketi@carnet.hr>
 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'.
index 8f6e250..db3c4b3 100644 (file)
@@ -1 +1 @@
-README.CARNet
+README.CARNET
index 4a87744..fc0f9c7 100755 (executable)
@@ -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#