Initialize Ansible
This commit is contained in:
parent
e6a4719e1d
commit
5d2fc799e2
11 changed files with 192 additions and 0 deletions
12
.gitmodules
vendored
Normal file
12
.gitmodules
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
[submodule "ansible/lookup_plugin"]
|
||||
path = ansible/lookup_plugin
|
||||
url = git@git.ccczh.ch:ansible-roles/plugin-hostfiles.git
|
||||
[submodule "roles/common"]
|
||||
path = roles/common
|
||||
url = git@git.ccczh.ch:ansible-roles/role-base_packages.git
|
||||
[submodule "roles/ssh_authorized_keys"]
|
||||
path = roles/ssh_authorized_keys
|
||||
url = git@git.ccczh.ch:ansible-roles/role-ssh_authorized_keys.git
|
||||
[submodule "roles/sshd"]
|
||||
path = roles/sshd
|
||||
url = git@git.ccczh.ch:ansible-roles/role-sshd.git
|
|
@ -0,0 +1,4 @@
|
|||
APU3 with LTE
|
||||
================
|
||||
|
||||
Here you will find the Ansible Playbook to setup a apu3 with LTE...
|
14
ansible.cfg
Normal file
14
ansible.cfg
Normal file
|
@ -0,0 +1,14 @@
|
|||
[defaults]
|
||||
|
||||
callback_plugins = ansible/callback_plugins
|
||||
lookup_plugins = ansible/lookup_plugin
|
||||
inventory = ./ansible/hosts
|
||||
remote_user = root
|
||||
retry_files_enabled = False
|
||||
nocows = True
|
||||
|
||||
# [privilege_escalation]
|
||||
# become=Yes
|
||||
# become_method=sudo
|
||||
# become_user=root
|
||||
# become_ask_pass=False
|
147
ansible/callback_plugins/human_log.py
Normal file
147
ansible/callback_plugins/human_log.py
Normal file
|
@ -0,0 +1,147 @@
|
|||
# This program 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.
|
||||
#
|
||||
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Inspired from: https://gist.github.com/cliffano/9868180
|
||||
# Improved and made compatible with Ansible v2
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from ansible.plugins.callback import CallbackBase
|
||||
try:
|
||||
import simplejson as json
|
||||
except ImportError:
|
||||
import json
|
||||
|
||||
# Fields to reformat output for
|
||||
FIELDS = ['cmd', 'command', 'start', 'end', 'delta', 'msg', 'stdout',
|
||||
'stderr', 'results']
|
||||
|
||||
|
||||
class CallbackModule(CallbackBase):
|
||||
def human_log(self, data):
|
||||
if type(data) == dict:
|
||||
for field in FIELDS:
|
||||
if field in data.keys() and data[field]:
|
||||
output = self._format_output(data[field])
|
||||
print("\n{0}: {1}".format(field, output.replace("\\n","\n")).strip())
|
||||
|
||||
def _format_output(self, output):
|
||||
# Strip unicode
|
||||
if type(output) == unicode:
|
||||
output = output.encode('ascii', 'replace')
|
||||
|
||||
# If output is a dict
|
||||
if type(output) == dict:
|
||||
return json.dumps(output, indent=2)
|
||||
|
||||
# If output is a list of dicts
|
||||
if type(output) == list and type(output[0]) == dict:
|
||||
# This gets a little complicated because it potentially means
|
||||
# nested results, usually because of with_items.
|
||||
real_output = list()
|
||||
for index, item in enumerate(output):
|
||||
copy = item
|
||||
if type(item) == dict:
|
||||
for field in FIELDS:
|
||||
if field in item.keys():
|
||||
copy[field] = self._format_output(item[field])
|
||||
real_output.append(copy)
|
||||
return json.dumps(output, indent=2)
|
||||
|
||||
# If output is a list of strings
|
||||
if type(output) == list and type(output[0]) != dict:
|
||||
# Strip newline characters
|
||||
real_output = list()
|
||||
for item in output:
|
||||
if "\n" in item:
|
||||
for string in item.split("\n"):
|
||||
real_output.append(string)
|
||||
else:
|
||||
real_output.append(item)
|
||||
|
||||
# Reformat lists with line breaks only if the total length is
|
||||
# >75 chars
|
||||
if len("".join(real_output)) > 75:
|
||||
return "\n" + "\n".join(real_output)
|
||||
else:
|
||||
return " ".join(real_output)
|
||||
|
||||
# Otherwise it's a string, just return it
|
||||
return output
|
||||
|
||||
def on_any(self, *args, **kwargs):
|
||||
pass
|
||||
|
||||
def runner_on_failed(self, host, res, ignore_errors=False):
|
||||
self.human_log(res)
|
||||
|
||||
def runner_on_ok(self, host, res):
|
||||
self.human_log(res)
|
||||
|
||||
|
||||
def runner_on_error(self, host, msg):
|
||||
pass
|
||||
|
||||
def runner_on_skipped(self, host, item=None):
|
||||
pass
|
||||
|
||||
def runner_on_unreachable(self, host, res):
|
||||
self.human_log(res)
|
||||
|
||||
def runner_on_no_hosts(self):
|
||||
pass
|
||||
|
||||
def runner_on_async_poll(self, host, res, jid, clock):
|
||||
self.human_log(res)
|
||||
|
||||
def runner_on_async_ok(self, host, res, jid):
|
||||
self.human_log(res)
|
||||
|
||||
def runner_on_async_failed(self, host, res, jid):
|
||||
self.human_log(res)
|
||||
|
||||
def playbook_on_start(self):
|
||||
pass
|
||||
|
||||
def playbook_on_notify(self, host, handler):
|
||||
pass
|
||||
|
||||
def playbook_on_no_hosts_matched(self):
|
||||
pass
|
||||
|
||||
def playbook_on_no_hosts_remaining(self):
|
||||
pass
|
||||
|
||||
def playbook_on_task_start(self, name, is_conditional):
|
||||
pass
|
||||
|
||||
def playbook_on_vars_prompt(self, varname, private=True, prompt=None,
|
||||
encrypt=None, confirm=False, salt_size=None,
|
||||
salt=None, default=None):
|
||||
pass
|
||||
|
||||
def playbook_on_setup(self):
|
||||
pass
|
||||
|
||||
def playbook_on_import_for_host(self, host, imported_file):
|
||||
pass
|
||||
|
||||
def playbook_on_not_import_for_host(self, host, missing_file):
|
||||
pass
|
||||
|
||||
def playbook_on_play_start(self, pattern):
|
||||
pass
|
||||
|
||||
def playbook_on_stats(self, stats):
|
||||
pass
|
BIN
ansible/callback_plugins/human_log.pyc
Normal file
BIN
ansible/callback_plugins/human_log.pyc
Normal file
Binary file not shown.
2
ansible/hosts
Normal file
2
ansible/hosts
Normal file
|
@ -0,0 +1,2 @@
|
|||
[lte]
|
||||
discord.ffbsee.net ansible_host=192.168.133.248
|
1
ansible/lookup_plugin
Submodule
1
ansible/lookup_plugin
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit e16230e78fbeef0dd149d19bccd1a1162b4c98e6
|
1
roles/common
Submodule
1
roles/common
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 44274fd1effbef8dc31336377bc21e84bce54820
|
1
roles/ssh_authorized_keys
Submodule
1
roles/ssh_authorized_keys
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 22ba86b80505f43a662984e870ab22601da80b8c
|
1
roles/sshd
Submodule
1
roles/sshd
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit f03546d93c2b9ab175ff14abd07a00f1a7ce2956
|
9
setup_apu3.yml
Normal file
9
setup_apu3.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
|
||||
- name: Apply common configuration of all hosts
|
||||
hosts: all
|
||||
roles:
|
||||
- common
|
||||
- ssh_authorized_keys
|
||||
- sshd
|
||||
|
Loading…
Reference in a new issue