cdist configuration management
Latest manual: https://www.cdi.st/manual/latest/
Home page: https://www.cdi.st
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.8 KiB
50 lines
1.8 KiB
# -*- coding: utf-8 -*- |
|
# |
|
# 2013-2019 Steven Armstrong (steven-cdist at armstrong.cc) |
|
# |
|
# This file is part of cdist. |
|
# |
|
# cdist is free software: you can redistribute it and/or modify |
|
# it under the terms of the GNU General Public License as published by |
|
# the Free Software Foundation, either version 3 of the License, or |
|
# (at your option) any later version. |
|
# |
|
# cdist is distributed in the hope that it will be useful, |
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
# GNU General Public License for more details. |
|
# |
|
# You should have received a copy of the GNU General Public License |
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>. |
|
# |
|
# |
|
|
|
import cdist.config |
|
import cdist.core |
|
import cdist.log |
|
|
|
|
|
class Install(cdist.config.Config): |
|
|
|
@classmethod |
|
def onehost(cls, host, host_tags, host_base_path, host_dir_name, args, |
|
parallel, configuration, remove_remote_files_dirs=False): |
|
# Always start log server during cdist install so that nested |
|
# `cdist config` runs have a place to send their logs to. |
|
args.log_server = True |
|
|
|
super().onehost(host, host_tags, host_base_path, host_dir_name, args, |
|
parallel, configuration, remove_remote_files_dirs) |
|
|
|
def object_list(self): |
|
"""Short name for object list retrieval. |
|
In install mode, we only care about install objects. |
|
""" |
|
for cdist_object in cdist.core.CdistObject.list_objects( |
|
self.local.object_path, self.local.type_path, |
|
self.local.object_marker_name): |
|
if cdist_object.cdist_type.is_install: |
|
yield cdist_object |
|
else: |
|
self.log.debug("Running in install mode, ignoring non install" |
|
"object: {0}".format(cdist_object))
|
|
|