summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2015-04-29 08:15:50 +0200
committerTomas Babej <tbabej@redhat.com>2015-07-02 13:23:21 +0200
commit0cb87fc31ae5babb9331ed81d8d743bcc5bb1c92 (patch)
tree6c8111818597a306d2463d9dea7c2c686eb4c88a /install
parentccbf2678725949c527a99cb8c36a1fc9cc1b884f (diff)
downloadfreeipa-0cb87fc31ae5babb9331ed81d8d743bcc5bb1c92.tar.gz
freeipa-0cb87fc31ae5babb9331ed81d8d743bcc5bb1c92.tar.xz
freeipa-0cb87fc31ae5babb9331ed81d8d743bcc5bb1c92.zip
winsync-migrate: Add initial plumbing
https://fedorahosted.org/freeipa/ticket/4524 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'install')
-rwxr-xr-xinstall/tools/ipa-winsync-migrate23
1 files changed, 23 insertions, 0 deletions
diff --git a/install/tools/ipa-winsync-migrate b/install/tools/ipa-winsync-migrate
new file mode 100755
index 000000000..9eb9a03eb
--- /dev/null
+++ b/install/tools/ipa-winsync-migrate
@@ -0,0 +1,23 @@
+#! /usr/bin/python2 -E
+# Authors: Tomas Babej <tbabej@redhat.com>
+#
+# Copyright (C) 2015 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+from ipaserver.winsync_migrate.base import MigrateWinsync
+
+MigrateWinsync.run_cli()