+gumd (0.0.4-4) unstable; urgency=low
+
+ * Fixed bug TC-1580 which fixes user's folder and file access permissions
+
+ -- Imran Zaman <imran.zaman@intel.com> Tue, 26 Aug 2014 18:00:03 +0300
+
gumd (0.0.4-3) unstable; urgency=low
* Made gum-utils logs printible always
%changelog
+* Fri Sep 05 2014 Imran Zaman <imran.zaman@intel.com>
+- Fixed bug TC-1580 which fixes user's folder and file access permissions
+
* Tue Aug 26 2014 Imran Zaman <imran.zaman@intel.com>
- Made gum-utils logs printible always
- Fixed bug for guest user which can login without authentication
+* Fri Sep 05 2014 Imran Zaman <imran.zaman@intel.com>
+- Fixed bug TC-1580 which fixes user's folder and file access permissions
+
* Tue Aug 26 2014 Imran Zaman <imran.zaman@intel.com>
- Made gum-utils logs printible always
- Fixed bug for guest user which can login without authentication
Name: gumd
Summary: User management daemon and client library
Version: 0.0.4
-Release: 3
+Release: 4
Group: Security/Accounts
License: LGPL-2.1+
Source: %{name}-%{version}.tar.gz
%build
%if %{debug_build} == 1
-%configure --enable-dbus-type=%{dbus_type} %{_enable_debug}
+%configure --enable-dbus-type=%{dbus_type} --enable-debug
%else
%configure --enable-dbus-type=%{dbus_type}
%endif
}
if (!self->priv->config_file_path) {
+ gchar *filename = g_build_filename ("%s/gumd/%s", GUM_SYSCONF_DIR,
+ "gumd.conf", NULL);
+ self->priv->config_file_path = _check_config_file (filename);
+ g_free (filename);
+ }
+
+ if (!self->priv->config_file_path) {
self->priv->config_file_path = _check_config_file (GUM_SYSCONF_DIR);
}
# ifndef GUM_SYSCONF_DIR
# error "System configuration directory not defined!"
# endif
- self->priv->config_file_path = _check_config_file (GUM_SYSCONF_DIR);
+ gchar *filename = g_build_filename ("%s/gumd/%s", GUM_SYSCONF_DIR,
+ "gumd.conf", NULL);
+ self->priv->config_file_path = _check_config_file (filename);
+ g_free (filename);
# endif /* ENABLE_DEBUG */
if (self->priv->config_file_path) {