示例#1
0
 def modify_nsswitch_pam_stack(self,
                               sssd,
                               mkhomedir,
                               statestore,
                               sudo=True):
     auth_config = get_auth_tool()
     auth_config.configure(sssd, mkhomedir, statestore, sudo)
示例#2
0
    def restore_pre_ipa_client_configuration(self, fstore, statestore,
                                             was_sssd_installed,
                                             was_sssd_configured):

        auth_config = get_auth_tool()
        auth_config.unconfigure(fstore, statestore, was_sssd_installed,
                                was_sssd_configured)
示例#3
0
文件: tasks.py 项目: stlaz/freeipa
    def restore_pre_ipa_client_configuration(self, fstore, statestore,
                                             was_sssd_installed,
                                             was_sssd_configured):

        auth_config = get_auth_tool()
        auth_config.unconfigure(
            fstore, statestore, was_sssd_installed, was_sssd_configured
        )
示例#4
0
 def restore_auth_configuration(self, path):
     auth_config = get_auth_tool()
     auth_config.restore(path)
示例#5
0
 def backup_auth_configuration(self, path):
     auth_config = get_auth_tool()
     auth_config.backup(path)
示例#6
0
文件: tasks.py 项目: stlaz/freeipa
 def restore_auth_configuration(self, path):
     auth_config = get_auth_tool()
     auth_config.restore(path)
示例#7
0
文件: tasks.py 项目: stlaz/freeipa
 def backup_auth_configuration(self, path):
     auth_config = get_auth_tool()
     auth_config.backup(path)
示例#8
0
文件: tasks.py 项目: stlaz/freeipa
 def modify_nsswitch_pam_stack(self, sssd, mkhomedir, statestore,
                               sudo=True):
     auth_config = get_auth_tool()
     auth_config.configure(sssd, mkhomedir, statestore, sudo)