Hello community, here is the log from the commit of package zmd checked in at Fri May 26 15:49:03 CEST 2006. -------- --- zmd/zmd.changes 2006-05-24 00:39:41.000000000 +0200 +++ zmd/zmd.changes 2006-05-25 19:40:50.000000000 +0200 @@ -1,0 +2,6 @@ +Thu May 25 19:40:09 CEST 2006 - maw@suse.de + +- Added a patch (sleep-interval.patch) to make zmd go to sleep + after 30 minutes of inactivity instead of 5. + +------------------------------------------------------------------- New: ---- sleep-interval.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zmd.spec ++++++ --- /var/tmp/diff_new_pack.gtxr1C/_old 2006-05-26 15:48:49.000000000 +0200 +++ /var/tmp/diff_new_pack.gtxr1C/_new 2006-05-26 15:48:49.000000000 +0200 @@ -14,7 +14,7 @@ BuildRequires: dbus-1-mono log4net mono-basic mono-data-sqlite mono-devel perl-XML-Parser rpm-devel sqlite-devel URL: http://www.novell.com Version: 7.1.1.0 -Release: 43 +Release: 44 License: LGPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: %{name}-%{version}.tar.bz2 @@ -23,6 +23,7 @@ Patch2: dont-run-transaction-test.patch Patch3: zmd-networkmanager-reconnect.diff Patch4: retry-interval.patch +Patch5: sleep-interval.patch Summary: Novell ZENworks Linux Management daemon Group: System/Daemons Autoreqprov: on @@ -70,6 +71,7 @@ %patch2 %patch3 %patch4 +%patch5 %build libtoolize -f @@ -157,6 +159,9 @@ # %{_libdir}/monodoc/sources/* %changelog -n zmd +* Thu May 25 2006 - maw@suse.de +- Added a patch (sleep-interval.patch) to make zmd go to sleep + after 30 minutes of inactivity instead of 5. * Wed May 24 2006 - maw@suse.de - Actually restart on update. #178218 * Mon May 22 2006 - maw@suse.de ++++++ sleep-interval.patch ++++++ --- src/Prefs.cs 2006-04-24 23:40:44.000000000 +0200 +++ src/Prefs.cs.rian 2006-05-25 19:38:33.963676619 +0200 @@ -524,7 +524,7 @@ this.description = GettextCatalog.GetString ("Number of seconds of inactivity until sleep occurs"); this.category = GettextCatalog.GetString ("Server"); this.type = typeof (int); - this.default_value = (int) 60 * 5; // 5 minutes + this.default_value = (int) 60 * 30; // 30 minutes } } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de