FastHandle is fast operation tools for infrastructure configurations and tests.
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
preparation:fhhome:init.py.html [2017/11/27 01:19] kurihara |
preparation:fhhome:init.py.html [2019/02/13 00:18] (current) kurihara |
||
---|---|---|---|
Line 1: | Line 1: | ||
[[: | [[: | ||
- | ====== fabfile/ | + | ====== |
Line 8: | Line 8: | ||
<sxh bash toolbar: | <sxh bash toolbar: | ||
- | import sys | + | import sys, os, glob, select, importlib, re |
from fabric.api import * | from fabric.api import * | ||
from fabric.contrib import files | from fabric.contrib import files | ||
- | | + | from datetime import datetime |
+ | |||
+ | # | ||
+ | # SSH User | ||
+ | # | ||
+ | hostname = os.uname()[1] | ||
+ | |||
+ | if hostname == " | ||
+ | env.user = ' | ||
+ | env.password = ' | ||
+ | elif hostname == " | ||
+ | env.user = ' | ||
+ | env.password = ' | ||
+ | elif hostname == " | ||
+ | env.user = ' | ||
+ | env.key_filename = ' | ||
+ | # | ||
+ | |||
+ | # | ||
+ | # Variable | ||
+ | # | ||
+ | FHHOME=os.environ[" | ||
env.warn_only = True | env.warn_only = True | ||
env.port = 22 | env.port = 22 | ||
+ | env.eagerly_disconnect = True | ||
+ | |||
+ | #don't create *.pyc without __init__.pyc | ||
+ | sys.dont_write_bytecode = True | ||
+ | |||
+ | |||
+ | |||
+ | # | ||
+ | # | ||
+ | # standard in for example echo x.x.x.x | ||
+ | if select.select([sys.stdin, | ||
+ | lines = sys.stdin.read().splitlines() | ||
+ | env.hosts = filter(bool, | ||
+ | |||
+ | |||
+ | #FastHandle Operation History to log file | ||
+ | TIME = datetime.now().strftime(' | ||
+ | yymm = datetime.now().strftime(' | ||
+ | |||
+ | f=open(" | ||
+ | |||
+ | if env.hosts == []: | ||
+ | f.write(" | ||
+ | f.write(' | ||
+ | f.write(" | ||
+ | |||
+ | for p in env.hosts: | ||
+ | f.write(" | ||
+ | f.write(' | ||
+ | f.write(" | ||
+ | f.close() | ||
+ | |||
+ | |||
+ | # auto import *.py | ||
+ | # Ref. https:// | ||
+ | pathThisFile = os.path.dirname(os.path.abspath(__file__)) | ||
+ | |||
+ | def loadModule(): | ||
- | HFHOME | + | myself |
- | lines = sys.stdin.read().splitlines() | + | #print __name__ |
- | env.hosts = filter(bool, | + | |
- | print " | + | |
- | import auth | + | mod_paths = glob.glob(os.path.join(pathThisFile, |
- | import test | + | for py_file in mod_paths: |
- | import user | + | |
- | import centos7 | + | if re.search(" |
- | import checklinux | + | mod = importlib.import_module(__name__+ " |
+ | #for m in mod.__dict__.keys(): | ||
+ | #if not m in [' | ||
+ | # | ||
+ | loadModule() | ||
</ | </ | ||
My Sites
SNS
Copyright (c) 2025 FastHandle - IT Operations Examples All Rights Reserved.