mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 01:14:21 +01:00
adding a check to avoid removing previous configuration in setup.py
This commit is contained in:
parent
55e71960f7
commit
bbb4ec4117
5
setup.py
5
setup.py
@ -73,10 +73,13 @@ def get_list_files(basedir, targetdir):
|
||||
return_list.append((os.path.join(targetdir, subpath), files_list))
|
||||
return return_list
|
||||
|
||||
# add static files and templates in the list of thing to deploy
|
||||
resources_files = get_list_files('resources',
|
||||
os.path.join(datarootdir, 'share', 'ldapcherry'))
|
||||
|
||||
resources_files.append((
|
||||
# add the configuration files if they don't exist
|
||||
if not os.path.exists(os.path.join(sysconfdir, 'ldapcherry')):
|
||||
resources_files.append((
|
||||
os.path.join(sysconfdir, 'ldapcherry'),
|
||||
[ 'conf/ldapcherry.ini', 'conf/attributes.yml', 'conf/roles.yml']
|
||||
))
|
||||
|
Loading…
Reference in New Issue
Block a user