mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-17 11:42:58 -06:00
c7f3c746cc
This patch adds a sysrestore module which allows ipa-server-install code to backup any system state so that it can be restored again with e.g. ipa-server-install --uninstall. The idea is that any files ipa-server-install modifies gets backed up to /var/cache/ipa/sysrestore/ while any "meta" state, like whether a service is enabled with chkconfig, is saved to /var/cache/ipa/sysrestore.state. Signed-off-by: Mark McLoughlin <markmc@redhat.com>
26 lines
378 B
Makefile
26 lines
378 B
Makefile
NULL =
|
|
|
|
appdir = $(IPA_DATA_DIR)/ipaserver
|
|
app_PYTHON = \
|
|
__init__.py \
|
|
bindinstance.py \
|
|
dsinstance.py \
|
|
ipaldap.py \
|
|
krbinstance.py \
|
|
httpinstance.py \
|
|
ntpinstance.py \
|
|
webguiinstance.py \
|
|
service.py \
|
|
installutils.py \
|
|
replication.py \
|
|
certs.py \
|
|
sysrestore.py \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|