diff --git a/_service b/_service index a4fe9ef..9ecd214 100644 --- a/_service +++ b/_service @@ -1,6 +1,6 @@ - git://git.linbit.com/csync2.git + https://github.com/LINBIT/csync2.git git .git 2.0+git.%ct.%h diff --git a/csync2-2.0+git.1461714863.10636a4.tar.bz2 b/csync2-2.0+git.1461714863.10636a4.tar.bz2 deleted file mode 100644 index 4c94939..0000000 --- a/csync2-2.0+git.1461714863.10636a4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6cf2f32ceb24abc08407e1522c28022c026e8982591d786d597221e90971f38a -size 91136 diff --git a/csync2-2.0+git.1529072214.b66d298.tar.bz2 b/csync2-2.0+git.1529072214.b66d298.tar.bz2 new file mode 100644 index 0000000..426697c --- /dev/null +++ b/csync2-2.0+git.1529072214.b66d298.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517a27932a058f7262ef3d453bb5f5b274369fc0193b8c4a1fb0874caa19d00a +size 91690 diff --git a/csync2.changes b/csync2.changes index c608f4f..8cde54d 100644 --- a/csync2.changes +++ b/csync2.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Wed Aug 15 14:20:12 UTC 2018 - kgronlund@suse.com + +- comparison of peer names provided via command line should not be case sensitive (bsc#1082576) +- fix for inetd stderr >& stdout +- fix log message when generating backup files, demote log level +- document -l and -N switches + +------------------------------------------------------------------- +Tue Aug 14 14:10:16 UTC 2018 - kgronlund@suse.com + +- Avoid systemd service removal errors when uninstalling (bsc#1093165) + ------------------------------------------------------------------- Thu Jul 19 13:46:24 UTC 2017 - tchvatal@suse.com diff --git a/csync2.spec b/csync2.spec index b8a8a3f..12e6eeb 100644 --- a/csync2.spec +++ b/csync2.spec @@ -1,7 +1,7 @@ # # spec file for package csync2 # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,10 +17,10 @@ Name: csync2 -Version: 2.0+git.1461714863.10636a4 +Version: 2.0+git.1529072214.b66d298 Release: 0 Summary: Cluster synchronization tool -License: GPL-2.0+ +License: GPL-2.0-or-later Group: Productivity/Clustering/HA Url: http://oss.linbit.com/csync2/ #Source0: http://oss.linbit.com/csync2/%{name}-%{version}.tar.gz @@ -109,7 +109,7 @@ EOF fi %preun -%service_del_preun csync2.socket csync2@.service +%service_del_preun csync2.socket # Cleanup all databases upon last removal if [ $1 -eq 0 ]; then rm -f %{_localstatedir}/lib/csync2/* diff --git a/fix-sonames.patch b/fix-sonames.patch index ba0b555..22bc252 100644 --- a/fix-sonames.patch +++ b/fix-sonames.patch @@ -48,31 +48,6 @@ Index: csync2-2.0+git.1368794815.cf835a7/db_postgres.c LOOKUP_SYMBOL(dl_handle, PQconnectdb); LOOKUP_SYMBOL(dl_handle, PQstatus); -Index: csync2-2.0+git.1368794815.cf835a7/db_sqlite.c -=================================================================== ---- csync2-2.0+git.1368794815.cf835a7.orig/db_sqlite.c -+++ csync2-2.0+git.1368794815.cf835a7/db_sqlite.c -@@ -56,16 +56,16 @@ static void *dl_handle; - - static void db_sqlite3_dlopen(void) - { -- csync_debug(2, "Opening shared library libsqlite3.so\n"); -+ csync_debug(2, "Opening shared library libsqlite3.so.0\n"); - -- dl_handle = dlopen("libsqlite3.so", RTLD_LAZY); -+ dl_handle = dlopen("libsqlite3.so.0", RTLD_LAZY); - if (dl_handle == NULL) { - csync_fatal -- ("Could not open libsqlite3.so: %s\n" -+ ("Could not open libsqlite3.so.0: %s\n" - "Please install sqlite3 client library (libsqlite3) or use other database (postgres, mysql)\n", - dlerror()); - } -- csync_debug(2, "Reading symbols from shared library libsqlite3.so\n"); -+ csync_debug(2, "Reading symbols from shared library libsqlite3.so.0\n"); - - LOOKUP_SYMBOL(dl_handle, sqlite3_open); - LOOKUP_SYMBOL(dl_handle, sqlite3_close); Index: csync2-2.0+git.1368794815.cf835a7/db_sqlite2.c =================================================================== --- csync2-2.0+git.1368794815.cf835a7.orig/db_sqlite2.c