Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package google-guest-oslogin for
openSUSE:Factory checked in at 2021-06-23 17:38:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/google-guest-oslogin (Old)
and /work/SRC/openSUSE:Factory/.google-guest-oslogin.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "google-guest-oslogin"
Wed Jun 23 17:38:32 2021 rev:8 rq:901484 version:20210618.00
Changes:
--------
---
/work/SRC/openSUSE:Factory/google-guest-oslogin/google-guest-oslogin.changes
2021-05-12 19:33:35.498711782 +0200
+++
/work/SRC/openSUSE:Factory/.google-guest-oslogin.new.2625/google-guest-oslogin.changes
2021-06-23 17:38:46.724516627 +0200
@@ -1,0 +2,6 @@
+Wed Jun 23 11:34:01 UTC 2021 - John Paul Adrian Glaubitz
<[email protected]>
+
+- Update to version 20210618.00
+ * flush each group member write (#62)
+
+-------------------------------------------------------------------
Old:
----
google-guest-oslogin-20210429.00.tar.gz
New:
----
google-guest-oslogin-20210618.00.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ google-guest-oslogin.spec ++++++
--- /var/tmp/diff_new_pack.1VUsUx/_old 2021-06-23 17:38:47.244517342 +0200
+++ /var/tmp/diff_new_pack.1VUsUx/_new 2021-06-23 17:38:47.248517347 +0200
@@ -17,7 +17,7 @@
Name: google-guest-oslogin
-Version: 20210429.00
+Version: 20210618.00
Release: 0
Summary: Google Cloud Guest OS Login
License: Apache-2.0
++++++ google-guest-oslogin-20210429.00.tar.gz ->
google-guest-oslogin-20210618.00.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/guest-oslogin-20210429.00/src/cache_refresh/cache_refresh.cc
new/guest-oslogin-20210618.00/src/cache_refresh/cache_refresh.cc
--- old/guest-oslogin-20210429.00/src/cache_refresh/cache_refresh.cc
2021-04-29 20:18:30.000000000 +0200
+++ new/guest-oslogin-20210618.00/src/cache_refresh/cache_refresh.cc
2021-06-18 21:56:14.000000000 +0200
@@ -62,6 +62,7 @@
syslog(LOG_ERR, "Failed to open file %s.", kDefaultBackupFilePath);
return -1;
}
+ cache_file << std::unitbuf; // enable automatic flushing
chown(kDefaultBackupFilePath, 0, 0);
chmod(kDefaultBackupFilePath, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
@@ -125,6 +126,7 @@
syslog(LOG_ERR, "Failed to open file %s.", kDefaultBackupGroupPath);
return -1;
}
+ cache_file << std::unitbuf; // enable automatic flushing
chown(kDefaultBackupGroupPath, 0, 0);
chmod(kDefaultBackupGroupPath, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);