mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Remove NTP server role while upgrading
Remove NTP server role from config.py. Remove uneccesary variables and replaced untrack_file with restore_file. Update typo in manpages and messages printed while installing. Resolves: https://pagure.io/freeipa/issue/7024 Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
committed by
Rob Crittenden
parent
ece56ea69a
commit
dba87a47a7
@@ -243,12 +243,6 @@ class config(LDAPObject):
|
||||
doc=_('IPA servers configured as certificate authority'),
|
||||
flags={'virtual_attribute', 'no_create', 'no_update'}
|
||||
),
|
||||
Str(
|
||||
'ntp_server_server*',
|
||||
label=_('IPA NTP servers'),
|
||||
doc=_('IPA servers with enabled NTP'),
|
||||
flags={'virtual_attribute', 'no_create', 'no_update'}
|
||||
),
|
||||
Str(
|
||||
'ca_renewal_master_server?',
|
||||
label=_('IPA CA renewal master'),
|
||||
@@ -548,7 +542,7 @@ class config_mod(LDAPUpdate):
|
||||
|
||||
def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
|
||||
self.obj.show_servroles_attributes(
|
||||
entry_attrs, "CA server", "IPA master", "NTP server", **options)
|
||||
entry_attrs, "CA server", "IPA master", **options)
|
||||
return dn
|
||||
|
||||
|
||||
@@ -558,5 +552,5 @@ class config_show(LDAPRetrieve):
|
||||
|
||||
def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
|
||||
self.obj.show_servroles_attributes(
|
||||
entry_attrs, "CA server", "IPA master", "NTP server", **options)
|
||||
entry_attrs, "CA server", "IPA master", **options)
|
||||
return dn
|
||||
|
||||
Reference in New Issue
Block a user