Merge pull request 'Rôle pour motd' (#38) from update_motd into master
continuous-integration/drone/push Build is failing Details

Reviewed-on: Aurore/ansible#38
This commit is contained in:
jeltz 2021-03-11 19:34:41 +01:00
commit 2a6c2b30de
11 changed files with 99 additions and 40 deletions

View File

@ -1,3 +0,0 @@
#!/bin/sh
# {{ ansible_managed }}
uname -snrvm

View File

@ -29,15 +29,8 @@
retries: 3 retries: 3
until: apt_result is succeeded until: apt_result is succeeded
# Pimp my server - include_role:
- name: Customize motd name: update_motd
copy:
src: "update-motd.d/{{ item }}"
dest: "/etc/update-motd.d/{{ item }}"
mode: 0755
loop:
- 00-logo
- 10-uname
- name: Remove Debian warranty motd - name: Remove Debian warranty motd
file: file:

View File

@ -84,8 +84,11 @@
enabled: true enabled: true
state: started state: started
- name: Indicate role in motd - include_role:
template: name: update_motd
src: update-motd.d/05-service.j2 vars:
dest: /etc/update-motd.d/05-prometheus motd_messages:
mode: 0755 - key: 05-prometheus
message: >-
Prometheus est déployé sur cette machine (voir /etc/prometheus)
...

View File

@ -1,4 +0,0 @@
#!/bin/sh
# {{ ansible_managed }}
echo "> prometheus a été déployé sur cette machine."
echo " Voir /etc/prometheus/"

View File

@ -38,9 +38,12 @@
enabled: true enabled: true
state: started state: started
- name: Indicate role in motd - include_role:
template: name: update_motd
src: update-motd.d/05-service.j2 vars:
dest: /etc/update-motd.d/05-prometheus motd_messages:
mode: 0755 - key: 05-prometheus-federate
message: >-
Prometheus (en configuration fédération) est déployé sur cette
machine (voir /etc/prometheus)
... ...

View File

@ -1,4 +0,0 @@
#!/bin/sh
# {{ ansible_managed }}
echo "> prometheus a été déployé sur cette machine."
echo " Voir /etc/prometheus/"

View File

@ -0,0 +1,10 @@
---
- name: Remove cached motd
become: true
file:
path: "{{ item }}"
state: absent
loop:
- /var/run/motd.dynamic
- /var/run/motd.dynamic.new
...

View File

@ -0,0 +1,53 @@
---
- name: Ensure update-motd.d exists
become: true
file:
path: /etc/update-motd.d
state: directory
mode: u=rwx,g=rx,o=rx
owner: root
group: root
- name: Customize motd
become: true
template:
src: "{{ item }}"
dest: "/etc/update-motd.d/{{ item }}"
mode: u=rwx,g=rx,o=rx
owner: root
group: root
loop:
- 00-logo
- 10-messages
- 20-uname
notify: Remove cached motd
- name: Remove Debian warranty motd
become: true
file:
path: /etc/motd
state: absent
notify: Remove cached motd
- name: Ensure motd-messages exists
become: true
file:
path: /etc/motd-messages
state: directory
mode: u=rwx,g=rx,o=rx
owner: root
group: root
notify: Remove cached motd
- name: Install additional motd messages
become: true
copy:
content: "✨ {{ item.message }}\n"
dest: "/etc/motd-messages/{{ item.key }}"
mode: u=rwx,g=rx,o=rx
owner: root
group: root
loop: "{{ motd_messages }}"
notify: Remove cached motd
when: motd_messages is defined
...

View File

@ -1,23 +1,23 @@
#!/bin/sh #!/bin/sh
# {{ ansible_managed }} {{ ansible_managed | comment }}
# Pretty uptime # Pretty uptime
upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)" upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)"
mins=$((${upSeconds}/60%60)) mins="$((upSeconds / 60 % 60))"
hours=$((${upSeconds}/3600%24)) hours="$((upSeconds / 3600 % 24))"
days=$((${upSeconds}/86400)) days="$((upSeconds / 86400))"
UPTIME=`printf "%d jours, %02dh%02dm" "$days" "$hours" "$mins"` UPTIME="$(printf "%d jours, %02dh%02dm" "$days" "$hours" "$mins")"
# RAM # RAM
RAM=`free -m | awk 'NR==2{printf "%s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2 }'` RAM="$(free -m | awk 'NR==2{printf "%s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2}')"
DISK=`df -h | awk '$NF=="/"{printf "%d/%dGB (%s)\n", $3,$2,$5}'` DISK="$(df -h | awk '$NF=="/"{printf "%d/%dGB (%s)\n", $3,$2,$5}')"
# Text font # Text font
bold=$(tput bold) bold="$(tput bold)"
normal=$(tput sgr0) normal="$(tput sgr0)"
# Logo # Logo
cat << EOF cat <<EOF
 
      ${bold}Uptime${normal} : ${UPTIME}       ${bold}Uptime${normal} : ${UPTIME}
    ${bold}Mémoire${normal} : ${RAM}     ${bold}Mémoire${normal} : ${RAM}

View File

@ -0,0 +1,4 @@
#!/bin/sh
set -euf
find /etc/motd-messages -type f -exec cat -- {} +

View File

@ -0,0 +1,4 @@
#!/bin/sh
{{ ansible_managed | comment }}
uname -snrvm