fix incorrect name of ipa-winsync-migrate command in help

Help and status text used incorrect name "ipa-migrate-winsync"

https://fedorahosted.org/freeipa/ticket/5713

Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
Petr Vobornik
2016-03-02 12:37:33 +01:00
committed by Tomas Babej
parent c14fb0b9e0
commit 57e02c7140

View File

@@ -42,15 +42,15 @@ class WinsyncMigrate(admintool.AdminTool):
Tool to migrate winsync users.
"""
command_name = 'ipa-migrate-winsync'
usage = "ipa-migrate-winsync"
command_name = 'ipa-winsync-migrate'
usage = "ipa-winsync-migrate"
description = (
"This tool creates user ID overrides for all the users "
"that were previously synced from AD domain using the "
"winsync replication agreement. It requires that trust "
"with the AD forest has already been established and "
"the users in question are resolvable using SSSD. "
"For more information, see `man ipa-migrate-winsync`."
"For more information, see `man ipa-winsync-migrate`."
)
@classmethod