Prva inačica za buster buster/7.9p1+cn10u1
authorZeljko Boros <Zeljko.Boros@carnet.hr>
Thu, 20 Aug 2020 12:09:13 +0000 (14:09 +0200)
committerZeljko Boros <Zeljko.Boros@carnet.hr>
Thu, 20 Aug 2020 12:09:13 +0000 (14:09 +0200)
README.CARNET [new file with mode: 0644]
debian/changelog
debian/control
debian/docs
debian/postinst

diff --git a/README.CARNET b/README.CARNET
new file mode 100644 (file)
index 0000000..9442165
--- /dev/null
@@ -0,0 +1,9 @@
+openssh-cn
++--------+
+
+Paket dodaje u sshd_config:
+
+ * ReverseMappingCheck yes
+ * PermitRootLogin no
+
+ -- Ivan Rako <Ivan.Rako@CARNet.hr>  Tue, 30 Oct 2007 00:51:47 +0100
index 24313e9..4a5a13b 100644 (file)
@@ -1,3 +1,10 @@
+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
index b96a5a5..0762240 100644 (file)
@@ -8,16 +8,7 @@ Standards-Version: 3.9.8
 
 Package: openssh-cn
 Architecture: all
-Depends: carnet-tools-cn (>= 3.1.0), openssh-client (>= 1:6.7p1-5+deb8u7), openssh-server (>= 1:6.7p1-5+deb8u7), ${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+deb10u1), 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#