entrance: move entrance config to /entrance/entrance.conf

This commit is contained in:
Michael Bouchaud 2014-05-05 19:10:32 +00:00
parent 3cca28d7d1
commit 824620a77c
2 changed files with 6 additions and 6 deletions

View File

@ -1,15 +1,15 @@
MAINTAINERCLEANFILES = Makefile.in
EXTRA_DIST = entrance entrance.conf entrance.other entrance.service.in
EXTRA_DIST = entrance entrance.conf entrance.other entrance.service.in Xsession
SUBDIRS = themes
pamdir = $(sysconfdir)/pam.d/
pam_DATA = entrance
confdir = $(sysconfdir)
conf_DATA = entrance.conf
confdir = $(sysconfdir)/entrance
conf_DATA = entrance.conf Xsession
sudoersdir = $(sysconfdir)/sudoers.d
sudoers_DATA = sudoers/entrance

View File

@ -50,11 +50,11 @@ _users_get(void)
if (!ef)
ef = eet_open("/var/cache/"PACKAGE"/"ENTRANCE_CONFIG_FILE,
EET_FILE_MODE_WRITE);
f = fopen(SYSTEM_CONFIG_DIR"/entrance.conf", "rb");
f = fopen(SYSTEM_CONFIG_DIR"/entrance/entrance.conf", "rb");
if (!f)
{
fprintf(stderr,
PACKAGE": Could not open "SYSTEM_CONFIG_DIR"/entrance.conf\n");
PACKAGE": Could not open "SYSTEM_CONFIG_DIR"/entrance/entrance.conf\n");
return;
}
@ -176,7 +176,7 @@ entrance_config_init()
}
else
{
stat(SYSTEM_CONFIG_DIR"/entrance.conf", &conf);
stat(SYSTEM_CONFIG_DIR"/entrance/entrance.conf", &conf);
if (cache.st_mtime < conf.st_mtime)
{
_users_get();