2013-08-29 20:32:26 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2019-11-11 23:40:58 +00:00
|
|
|
# 2013-2019 Steven Armstrong (steven-cdist at armstrong.cc)
|
2013-08-29 20:32:26 +00:00
|
|
|
#
|
|
|
|
# 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
|
2020-06-09 10:47:50 +00:00
|
|
|
import cdist.log
|
2013-08-29 20:32:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Install(cdist.config.Config):
|
2019-11-11 23:40:58 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def onehost(cls, host, host_tags, host_base_path, host_dir_name, args,
|
|
|
|
parallel, configuration, remove_remote_files_dirs=False):
|
2020-01-11 00:59:18 +00:00
|
|
|
# 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
|
2020-06-09 10:47:50 +00:00
|
|
|
|
2019-11-11 23:40:58 +00:00
|
|
|
super().onehost(host, host_tags, host_base_path, host_dir_name, args,
|
2020-06-09 10:47:50 +00:00
|
|
|
parallel, configuration, remove_remote_files_dirs)
|
2019-11-11 23:40:58 +00:00
|
|
|
|
2013-08-29 20:32:26 +00:00
|
|
|
def object_list(self):
|
|
|
|
"""Short name for object list retrieval.
|
|
|
|
In install mode, we only care about install objects.
|
|
|
|
"""
|
2016-10-13 19:24:29 +00:00
|
|
|
for cdist_object in cdist.core.CdistObject.list_objects(
|
2016-11-01 07:11:37 +00:00
|
|
|
self.local.object_path, self.local.type_path,
|
|
|
|
self.local.object_marker_name):
|
2013-08-29 20:32:26 +00:00
|
|
|
if cdist_object.cdist_type.is_install:
|
|
|
|
yield cdist_object
|
|
|
|
else:
|
2016-10-13 19:24:29 +00:00
|
|
|
self.log.debug("Running in install mode, ignoring non install"
|
|
|
|
"object: {0}".format(cdist_object))
|