Rename option --dirsrv-config-mods to --dirsrv-config-file

Option is renamed to be consistent with other options.

Affected tickets:
    https://fedorahosted.org/freeipa/ticket/4949
    https://fedorahosted.org/freeipa/ticket/4048
    https://fedorahosted.org/freeipa/ticket/1930

Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
This commit is contained in:
Martin Basti
2015-10-16 13:43:43 +02:00
parent 5233165ce7
commit f4c8c93e70
6 changed files with 10 additions and 10 deletions

View File

@@ -64,7 +64,7 @@ class TestCustomInstallMaster(IntegrationTest):
'-r', self.master.domain.name,
'-p', self.master.config.dirman_password,
'-a', self.master.config.admin_password,
'--dirsrv-config-mods', CONFIG_LDIF_PATH,
'--dirsrv-config-file', CONFIG_LDIF_PATH,
]
self.master.run_command(args)
@@ -89,6 +89,6 @@ class TestCustomInstallReplica(IntegrationTest):
'-p', self.replicas[0].config.dirman_password,
'-w', self.replicas[0].config.admin_password,
'--ip-address', self.replicas[0].ip,
'--dirsrv-config-mods', CONFIG_LDIF_PATH,
'--dirsrv-config-file', CONFIG_LDIF_PATH,
replica_filename]
self.replicas[0].run_command(args)