Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
824a2ec1ec | |||
18a389df0f | |||
9c66f1952b | |||
ead6752bab | |||
aadb25069d | |||
d3d87d3847 | |||
6341afd154 | |||
7734a8c457 | |||
67423daa30 |
@ -4,3 +4,5 @@ skip_list:
|
||||
- yaml[line-length]
|
||||
- no-changed-when
|
||||
- galaxy[no-changelog]
|
||||
- no-free-form
|
||||
- package-latest
|
||||
|
@ -8,7 +8,7 @@ namespace: jchristianh
|
||||
name: baseos
|
||||
|
||||
# The version of the collection. Must be compatible with semantic versioning
|
||||
version: 1.0.30
|
||||
version: 1.0.34
|
||||
|
||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||
readme: README.md
|
||||
|
@ -1,16 +1,12 @@
|
||||
---
|
||||
- name: Format uptime containing days
|
||||
- name: Format uptime using Jinja
|
||||
ansible.builtin.set_fact:
|
||||
uptime_formatted: "{{ motd_host_uptime | regex_replace(motd_day_filter, motd_day_filter_repl) }}"
|
||||
when:
|
||||
- "'day' in motd_host_uptime"
|
||||
|
||||
|
||||
- name: Format uptime not containing days
|
||||
ansible.builtin.set_fact:
|
||||
uptime_formatted: "{{ motd_host_uptime | regex_replace(motd_nonday_filter, motd_nonday_filter_repl) }}"
|
||||
when:
|
||||
- "'day' not in motd_host_uptime"
|
||||
uptime_formatted: |
|
||||
{% if 'day' in motd_host_uptime %}
|
||||
{{ motd_host_uptime | regex_replace(motd_day_filter, motd_day_filter_repl) }}
|
||||
{% else %}
|
||||
{{ motd_host_uptime | regex_replace(motd_nonday_filter, motd_nonday_filter_repl) }}
|
||||
{% endif %}
|
||||
|
||||
|
||||
- name: Update MOTD
|
||||
|
@ -16,9 +16,9 @@
|
||||
|
||||
Host : {{ inventory_hostname }}
|
||||
IP : {{ motd_host_ip }}
|
||||
CPU : {{ ansible_processor_vcpus }} x {{ ansible_processor[2] }}
|
||||
CPU : {{ ansible_processor_vcpus }} x {{ ansible_processor[2] | regex_replace('\\s+', ' ') }}
|
||||
Memory : {{ "{0:0.2f}".format(ansible_memfree_mb/1024) }} GB free of {{ (ansible_memtotal_mb/1024)|round}} GB
|
||||
Platform : {{ ansible_distribution }} {{ ansible_distribution_version }} {{ ansible_kernel }}
|
||||
Up : {{ uptime_formatted }}
|
||||
Up : {{ uptime_formatted | trim }}
|
||||
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
---
|
||||
node_status_host : zg-lxut02.thezengarden.net
|
||||
node_status_host : node-status.thezengarden.net
|
||||
node_status_user : chris
|
||||
node_status_group : chris
|
||||
node_status_dir : /home/chris/node_status
|
||||
node_status_file : status.csv
|
||||
node_status_lc : 3
|
||||
|
@ -1,29 +1,21 @@
|
||||
---
|
||||
- name: Update package cache for Debian hosts
|
||||
apt:
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
when:
|
||||
- ansible_distribution|lower == 'debian'
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
- "'apt' in ansible_pkg_mgr"
|
||||
|
||||
|
||||
- name: Update package cache for RHEL/CentOS/Fedora hosts
|
||||
dnf:
|
||||
ansible.builtin.dnf:
|
||||
update_cache: true
|
||||
when:
|
||||
- (ansible_distribution|lower == 'centos' or
|
||||
ansible_distribution|lower == 'fedora' or
|
||||
ansible_distribution|lower == 'redhat')
|
||||
- "'dnf' in ansible_pkg_mgr"
|
||||
- ansible_distribution_major_version|int >= 8
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
|
||||
|
||||
- name: Update all host packages
|
||||
package: name=* state=latest
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
ansible.builtin.package: name=* state=latest
|
||||
|
||||
|
||||
...
|
||||
|
Loading…
x
Reference in New Issue
Block a user