2013-08-07 07:24:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# 2013 Nico Schottelius (nico-cdist at schottelius.org)
|
|
|
|
#
|
|
|
|
# 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 logging
|
2013-08-07 15:52:34 +00:00
|
|
|
import os
|
|
|
|
import subprocess
|
2013-08-07 07:24:10 +00:00
|
|
|
|
2013-08-07 18:58:45 +00:00
|
|
|
# initialise cdist
|
2013-08-18 22:38:19 +00:00
|
|
|
import cdist.exec.local
|
2013-08-07 18:58:45 +00:00
|
|
|
|
|
|
|
|
2013-08-07 15:52:34 +00:00
|
|
|
import cdist.config
|
2013-08-07 07:24:10 +00:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
class Shell(object):
|
|
|
|
|
2013-08-07 18:58:45 +00:00
|
|
|
def __init__(self, shell=None):
|
2013-08-07 07:24:10 +00:00
|
|
|
|
2013-08-07 18:58:45 +00:00
|
|
|
self.shell = shell
|
2013-08-07 15:52:34 +00:00
|
|
|
|
2013-08-07 18:58:45 +00:00
|
|
|
self.target_host = "cdist-shell-no-target-host"
|
2013-09-03 19:32:26 +00:00
|
|
|
self.local = cdist.exec.local.Local(
|
|
|
|
target_host=self.target_host)
|
2013-08-07 15:52:34 +00:00
|
|
|
|
2013-08-07 18:58:45 +00:00
|
|
|
def _init_shell(self):
|
|
|
|
"""Select shell to execute, if not specified by user"""
|
|
|
|
|
|
|
|
if not self.shell:
|
|
|
|
if 'SHELL' in os.environ:
|
|
|
|
self.shell = os.environ['SHELL']
|
|
|
|
else:
|
|
|
|
self.shell = "/bin/sh"
|
|
|
|
|
|
|
|
def _init_files_dirs(self):
|
2013-08-18 22:38:19 +00:00
|
|
|
self.local.create_files_dirs()
|
2013-08-07 18:58:45 +00:00
|
|
|
|
|
|
|
def _init_environment(self):
|
|
|
|
self.env = os.environ.copy()
|
|
|
|
additional_env = {
|
2013-08-18 22:38:19 +00:00
|
|
|
'PATH': "%s:%s" % (self.local.bin_path, os.environ['PATH']),
|
|
|
|
'__cdist_type_base_path': self.local.type_path, # for use in type emulator
|
2013-08-07 18:58:45 +00:00
|
|
|
'__cdist_manifest': "cdist shell",
|
2013-09-03 19:32:26 +00:00
|
|
|
'__global': self.local.base_path,
|
2013-08-07 18:58:45 +00:00
|
|
|
'__target_host': self.target_host,
|
2013-08-18 22:38:19 +00:00
|
|
|
'__manifest': self.local.manifest_path,
|
|
|
|
'__explorer': self.local.global_explorer_path,
|
2013-08-07 18:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.env.update(additional_env)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self._init_shell()
|
|
|
|
self._init_files_dirs()
|
|
|
|
self._init_environment()
|
2013-08-07 07:24:10 +00:00
|
|
|
|
2013-08-07 15:52:34 +00:00
|
|
|
log.info("Starting shell...")
|
2013-08-18 22:38:19 +00:00
|
|
|
self.local.run([self.shell], self.env)
|
2013-08-07 18:58:45 +00:00
|
|
|
log.info("Finished shell.")
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def commandline(cls, args):
|
|
|
|
shell = cls(args.shell)
|
|
|
|
shell.run()
|