Hello community,

here is the log from the commit of package yast2-sshd for openSUSE:Factory
checked in at Mon Jun 20 12:55:09 CEST 2011.



--------
--- yast2-sshd/yast2-sshd.changes       2011-06-15 10:54:16.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-sshd/yast2-sshd.changes  2011-06-20 
11:14:28.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Jun 20 09:12:07 CEST 2011 - [email protected]
+
+- Removed all sleeps.
+- 2.21.1
+
+-------------------------------------------------------------------
@@ -4 +10 @@
-- Added possibility to manage the sshd service (#556535).
+- Added possibility to manage the sshd service (bnc #556535).

calling whatdependson for head-i586


Old:
----
  yast2-sshd-2.21.0.tar.bz2

New:
----
  yast2-sshd-2.21.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-sshd.spec ++++++
--- /var/tmp/diff_new_pack.LHTMaG/_old  2011-06-20 12:53:50.000000000 +0200
+++ /var/tmp/diff_new_pack.LHTMaG/_new  2011-06-20 12:53:50.000000000 +0200
@@ -19,11 +19,11 @@
 
 
 Name:           yast2-sshd
-Version:        2.21.0
+Version:        2.21.1
 Release:        1
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-sshd-2.21.0.tar.bz2
+Source0:        yast2-sshd-2.21.1.tar.bz2
 
 Prefix:         /usr
 
@@ -40,7 +40,7 @@
 This package contains the YaST2 component for SSH server configuration.
 
 %prep
-%setup -n yast2-sshd-2.21.0
+%setup -n yast2-sshd-2.21.1
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -78,5 +78,4 @@
 %{prefix}/share/applications/YaST2/sshd.desktop
 /usr/share/YaST2/schema/autoyast/rnc/sshd_config.rnc
 %doc %{prefix}/share/doc/packages/yast2-sshd
-
 %changelog

++++++ yast2-sshd-2.21.0.tar.bz2 -> yast2-sshd-2.21.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-sshd-2.21.0/VERSION 
new/yast2-sshd-2.21.1/VERSION
--- old/yast2-sshd-2.21.0/VERSION       2011-06-15 10:47:23.000000000 +0200
+++ new/yast2-sshd-2.21.1/VERSION       2011-06-20 11:11:15.000000000 +0200
@@ -1 +1 @@
-2.21.0
+2.21.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-sshd-2.21.0/src/Sshd.ycp 
new/yast2-sshd-2.21.1/src/Sshd.ycp
--- old/yast2-sshd-2.21.0/src/Sshd.ycp  2011-06-14 16:29:01.000000000 +0200
+++ new/yast2-sshd-2.21.1/src/Sshd.ycp  2011-06-20 09:11:37.000000000 +0200
@@ -28,11 +28,6 @@
 boolean modified = false;
 
 /**
- * Sleep time between Read or Write steps
- */
-integer sl = 150;
-
-/**
  * Returns whether the configuration has been modified.
  */
 global boolean GetModified() {
@@ -248,17 +243,13 @@
        ""
     );
 
-    sleep(sl);
-
     if (PollAbort()) return false;
     Progress::NextStage();
     if(!ReadSSHDSettings()) 
Report::Error(Message::CannotReadCurrentSettings());
-    sleep(sl);
 
     if (PollAbort()) return false;
     Progress::NextStage();
     if (!ReadStartService()) 
Report::Error(Message::CannotReadCurrentSettings());
-    sleep(sl);
 
     if (PollAbort()) return false;
     Progress::NextStep();
@@ -266,16 +257,13 @@
     /* Error message */
     if(!SuSEFirewall::Read()) Report::Error(_("Cannot read firewall 
settings."));
     Progress::set (progress_state);
-    sleep(sl);
 
     if (PollAbort()) return false;
     Progress::NextStage ();
-    sleep(sl);
 
     if (PollAbort()) return false;
     Progress::NextStage ();
     start_service = Service::Enabled (service_name);
-    sleep(sl);
 
     modified = false;
     return true;
@@ -357,13 +345,10 @@
        ""
     );
 
-    sleep(sl);
-
     if(PollAbort()) return false;
     Progress::NextStage();
     /* Error message */
     if(!WriteSSHDSettings()) Report::Error (_("Cannot write the SSHD 
settings."));
-    sleep(sl);
 
     if(PollAbort()) return false;
     Progress::NextStage ();
@@ -371,15 +356,12 @@
     /* Error message */
     if(!SuSEFirewall::Write()) Report::Error(_("Cannot write firewall 
settings."));
     Progress::set (progress_state);
-    sleep(sl);
 
     if(PollAbort()) return false;
     Progress::NextStage ();
     AdjustSSHDService();
-    sleep(sl);
 
     Progress::NextStage ();
-    sleep(sl);
 
     return true;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-sshd-2.21.0/src/wizards.ycp 
new/yast2-sshd-2.21.1/src/wizards.ycp
--- old/yast2-sshd-2.21.0/src/wizards.ycp       2011-06-14 16:21:04.000000000 
+0200
+++ new/yast2-sshd-2.21.1/src/wizards.ycp       2011-06-20 09:12:55.000000000 
+0200
@@ -24,7 +24,6 @@
     Wizard::CreateDialog ();
     Wizard::RestoreHelp (HELPS["write"]:"");
     Sshd::Write ();
-    sleep (1000);
     UI::CloseDialog ();
 }
 


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to