Imported Upstream version 4.7.2

This commit is contained in:
Mario Fetka
2021-08-09 20:54:00 +02:00
parent 3bfaa6e020
commit a791de49a2
2175 changed files with 1764288 additions and 331861 deletions

View File

@@ -0,0 +1,25 @@
#
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
#
"""
Connection check module
"""
from ipalib.install import service
from ipalib.install.service import enroll_only, replica_install_only
from ipapython.install.core import knob
class ConnCheckInterface(service.ServiceAdminInstallInterface):
"""
Interface common to all installers which perform connection check to the
remote master.
"""
skip_conncheck = knob(
None,
description="skip connection check to remote master",
)
skip_conncheck = enroll_only(skip_conncheck)
skip_conncheck = replica_install_only(skip_conncheck)