1 2 3 4 5 6 7
def getRoot(config): if not config.parent: return config return getRoot(config.parent) if not getRoot(config).have_selinux: config.unsupported = True