Compare commits

...

15 Commits
2.1.0 ... main

Author SHA1 Message Date
824e44cceb update 2024-12-18 21:43:21 +01:00
f9177a912f update 2024-12-18 21:36:07 +01:00
Delibes Bechir BKWEDOU-NGAMENI
960cc9e72a
Merge pull request #6 from claranet/updatecli_main
feat(ci): add ubuntu 24.04 in test workflow
2024-07-05 10:07:24 +02:00
Delibes Bechir BKWEDOU-NGAMENI
f5083595f0 chore: add in worflow tests on ubuntu 24
Made with ❤️️ by updatecli
2024-06-20 08:48:20 +00:00
Élie Deloumeau-Prigent
831f658f60
Trigger CI 2024-02-07 14:38:49 +01:00
Élie Deloumeau-Prigent
8ce4376c87
Trigger CI 2024-02-07 14:32:27 +01:00
Élie Deloumeau-Prigent
cc928916a5
Trigger CI 2024-02-07 14:09:59 +01:00
Élie Deloumeau-Prigent
4249473328
profile tasks 2024-02-07 11:02:47 +01:00
Delibes Bechir BKWEDOU-NGAMENI
9cf80214ee
Merge pull request #5 from claranet/feat/newest-distrib-support
feat: newest distrib support
2023-08-07 13:28:54 +02:00
Bechir Delibes BKWEDOU-NGAMENI
68c3f15171 fix: update testing badge for show CI result 2023-08-07 12:39:30 +02:00
Bechir Delibes BKWEDOU-NGAMENI
7c53a18c21 feat: upgrade molecule to v5 2023-08-07 12:26:04 +02:00
Bechir Delibes BKWEDOU-NGAMENI
8eb3096a5e fix: remove flake8 as verifier for lint 2023-08-07 12:25:44 +02:00
Bechir Delibes BKWEDOU-NGAMENI
eaff8d03a5 fix: ansible-lint errors 2023-08-07 12:25:13 +02:00
Bechir Delibes BKWEDOU-NGAMENI
28a61e55fa fix: lint error by fecthing last content from cookiecutter 2023-08-07 12:24:38 +02:00
Élie Deloumeau-Prigent
b2ad104eec
downgrade to ubuntu 20.04 due to docker bug with latest systemd 2022-08-22 17:31:37 +02:00
7 changed files with 85 additions and 93 deletions

View File

@ -9,60 +9,58 @@ parseable: true
use_default_rules: true use_default_rules: true
enable_list: enable_list:
command-shell: # Specific to use of command and shell modules # Specific to use of command and shell modules
- command-instead-of-module - command-instead-of-module
- command-instead-of-shell - command-instead-of-shell
- deprecated-command-syntax - deprecated-command-syntax
- inline-env-var - inline-env-var
- no-changed-when - no-changed-when
- risky-shell-pipe - risky-shell-pipe
core: # Related to internal implementation of the linter # Related to internal implementation of the linter
- internal-error - internal-error
- load-failure - load-failure
- parser-error - parser-error
- syntax-check - syntax-check
deprecations: # Indicate use of features that are removed from Ansible # Indicate use of features that are removed from Ansible
- deprecated-bare-vars - deprecated-bare-vars
- deprecated-command-syntax - deprecated-command-syntax
- deprecated-local-action - deprecated-local-action
- deprecated-module - deprecated-module
- no-jinja-when - no-jinja-when
- role-name - role-name
formatting: # Related to code-style # Related to code-style
- no-jinja-nesting - no-jinja-nesting
- no-tabs - no-tabs
- playbook-extension - playbook-extension
- risky-octal - risky-octal
- var-spacing - var-spacing
- yaml - yaml
idempotency: # Possible indication that consequent runs would produce different results # Possible indication that consequent runs would produce different results
- git-latest - git-latest
- hg-latest - hg-latest
- no-changed-when - no-changed-when
- package-latest - package-latest
idiom: # Anti-pattern detected, likely to cause undesired behavior # Anti-pattern detected, likely to cause undesired behavior
- command-instead-of-module - command-instead-of-module
- command-instead-of-shell - command-instead-of-shell
- empty-string-compare - empty-string-compare
- inline-env-var - inline-env-var
- literal-compare - literal-compare
- no-handler - no-handler
- no-loop-var-prefix - no-loop-var-prefix
- no-relative-paths - no-relative-paths
- unnamed-task - unnamed-task
- var-naming - var-naming
metadata: # Invalid metadata, likely related to galaxy, collections or roles # Invalid metadata, likely related to galaxy, collections or roles
- meta-incorrect - meta-incorrect
- meta-no-tags - meta-no-tags
- meta-video-links - meta-video-links
- role-name - role-name
unpredictability: - ignore-errors
- ignore-errors - partial-become
- partial-become - syntax-check
unskippable: # External linter which will also produce its own rule codes.
- syntax-check - yaml
yaml: # External linter which will also produce its own rule codes.
- yaml
warn_list: warn_list:
- experimental # all rules tagged as experimental - experimental # all rules tagged as experimental
@ -71,5 +69,6 @@ warn_list:
skip_list: skip_list:
- role-name # BUG - role-name # BUG
- name[casing]
verbosity: 1 verbosity: 1

View File

@ -1,12 +1,10 @@
--- ---
name: Ansible Molecule name: Ansible Molecule
on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
push: push:
tags_ignore: tags_ignore:
- '*' - '*'
pull_request: pull_request:
jobs: jobs:
setup: setup:
name: Setup scenarios matrix name: Setup scenarios matrix
@ -27,7 +25,6 @@ jobs:
JSON="$JSON]" JSON="$JSON]"
echo "::set-output name=scenarios::$(echo $JSON)" echo "::set-output name=scenarios::$(echo $JSON)"
lint: lint:
name: Lint name: Lint
needs: needs:
@ -38,18 +35,16 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
path: "${{ github.repository }}" path: "${{ github.repository }}"
- name: molecule - name: Run ansible lint
uses: robertdebock/molecule-action@4.0.9 uses: ansible/ansible-lint-action@main
with: with:
command: lint path: "."
scenario: ${{ fromJson(needs.setup.outputs.scenarios)[0] }}
test: test:
name: Scenario "${{ matrix.scenario }}" on ${{ matrix.config.image }}:${{ matrix.config.tag }} name: Scenario "${{ matrix.scenario }}" on ${{ matrix.config.image }}:${{ matrix.config.tag }}
needs: needs:
- lint - lint
- setup - setup
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -60,23 +55,28 @@ jobs:
- name: "redhat" - name: "redhat"
image: "registry.access.redhat.com/ubi8/ubi" image: "registry.access.redhat.com/ubi8/ubi"
tag: "latest" tag: "latest"
- image: "debian"
tag: "12"
- image: "debian" - image: "debian"
tag: "11" tag: "11"
- image: "debian" - image: "debian"
tag: "10" tag: "10"
- image: "ubuntu" - image: "ubuntu"
tag: "22.04" tag: "22.04"
- image: ubuntu
tag: "24.04"
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
path: "${{ github.repository }}" path: "${{ github.repository }}"
- name: molecule - name: molecule
uses: robertdebock/molecule-action@4.0.9 uses: gofrolist/molecule-action@v2
with: with:
# molecule_options: --debug
molecule_command: test
molecule_args: --scenario-name ${{ matrix.scenario }} -d docker
molecule_working_dir: "${{ github.repository }}"
env:
image: ${{ matrix.config.image }} image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }} tag: ${{ matrix.config.tag }}
scenario: ${{ matrix.scenario }}
env:
name: ${{ matrix.config.name }}

View File

@ -1,24 +1,15 @@
# Ansible role - motd # Ansible role - motd
[![Maintainer](https://img.shields.io/badge/maintained%20by-claranet-e00000?style=flat-square)](https://www.claranet.fr/)
[![License](https://img.shields.io/github/license/claranet/ansible-role-motd?style=flat-square)](LICENSE)
[![Release](https://img.shields.io/github/v/release/claranet/ansible-role-motd?style=flat-square)](https://github.com/claranet/ansible-role-motd/releases)
[![Status](https://img.shields.io/github/workflow/status/claranet/ansible-role-motd/Ansible%20Molecule?style=flat-square&label=tests)](https://github.com/claranet/ansible-role-motd/actions?query=workflow%3A%22Ansible+Molecule%22)
[![Ansible version](https://img.shields.io/badge/ansible-%3E%3D2.9-black.svg?style=flat-square&logo=ansible)](https://github.com/ansible/ansible)
[![Ansible Galaxy](https://img.shields.io/badge/ansible-galaxy-black.svg?style=flat-square&logo=ansible)](https://galaxy.ansible.com/claranet/motd)
> :star: Star us on GitHub — it motivates us a lot!
Install and configure dynamic MOTD Install and configure dynamic MOTD
This role uses [https://github.com/claranet/motd](https://github.com/claranet/motd) by default to get the MOTD This role uses [https://gitea.tips-of-mine.com/Tips-Of-Mine/motd](https://gitea.tips-of-mine.com/Tips-Of-Mine/motd) by default to get the MOTD
``` ```
System info: System info:
Hostname·········: claranet_motd_ubuntu-20.04 Hostname·········: tips-of-mine_motd_ubuntu-20.04
Distro···········: Ubuntu 20.04.3 LTS Distro···········: Ubuntu 20.04.3 LTS
Kernel···········: Linux 5.10.47-linuxkit Kernel···········: Linux 5.10.47-linuxkit
Uptime···········: up 2 days, 23 hours, 18 minutes Uptime···········: up 12 days, 23 hours, 18 minutes
Load·············: 1.33 (1m), 0.43 (5m), 0.20 (15m) Load·············: 1.33 (1m), 0.43 (5m), 0.20 (15m)
Processes········: 13 (root), 3 (user), 16 (total) Processes········: 13 (root), 3 (user), 16 (total)
CPU··············: Intel(R) Core(TM) i7-8569U CPU @ 2.80GHz (4 vCPU) CPU··············: Intel(R) Core(TM) i7-8569U CPU @ 2.80GHz (4 vCPU)
@ -40,7 +31,7 @@ Ansible >= 2.10
## :zap: Installation ## :zap: Installation
```bash ```bash
ansible-galaxy install claranet.motd ansible-galaxy install tips-of-mine.motd
``` ```
## :gear: Role variables ## :gear: Role variables
@ -48,7 +39,7 @@ ansible-galaxy install claranet.motd
Variable | Default value | Description Variable | Default value | Description
-----------------------------|------------------------------------------------------------------------|---------------------------------------------------------------- -----------------------------|------------------------------------------------------------------------|----------------------------------------------------------------
motd_disable_default_motd | true | Disable system default MOTD (/etc/motd) motd_disable_default_motd | true | Disable system default MOTD (/etc/motd)
motd_template | https://raw.githubusercontent.com/claranet/motd/master/scripts/00-basic| Dynmaic MOTD template<br>Can be a URL or a local template motd_template | https://gitea.tips-of-mine.com/Tips-Of-Mine/motd/scripts/00-basic | Dynmaic MOTD template<br>Can be a URL or a local template
motd_template_prepend | "" | Prepend raw content to `motd_template` motd_template_prepend | "" | Prepend raw content to `motd_template`
motd_template_append | See [defaults/main.yml](defaults/main.yml) | Append raw content to `motd_template` motd_template_append | See [defaults/main.yml](defaults/main.yml) | Append raw content to `motd_template`
motd_template_username | "" | Used when `motd_template` is an URL motd_template_username | "" | Used when `motd_template` is an URL
@ -60,7 +51,7 @@ motd_template_password | ""
--- ---
- hosts: all - hosts: all
roles: roles:
- role: claranet.motd - role: tips-of-mine.motd
motd_template: "{{ playbook_dir }}/templates/dynmotd.j2" motd_template: "{{ playbook_dir }}/templates/dynmotd.j2"
``` ```

View File

@ -1,6 +1,6 @@
--- ---
motd_disable_default_motd: true motd_disable_default_motd: true
motd_template: https://raw.githubusercontent.com/claranet/motd/master/scripts/00-basic motd_template: https://gitea.tips-of-mine.com/Tips-Of-Mine/motd/master/scripts/00-basic
motd_template_prepend: "" motd_template_prepend: ""
motd_template_append: | motd_template_append: |

View File

@ -6,11 +6,11 @@
pre_tasks: pre_tasks:
- name: "Update APT cache" - name: "Update APT cache"
apt: ansible.builtin.apt:
update_cache: true update_cache: true
when: when:
- ansible_pkg_mgr == "apt" - ansible_pkg_mgr == "apt"
- name: Install sshd - name: Install sshd
package: ansible.builtin.package:
name: openssh-server name: openssh-server

View File

@ -1,13 +1,14 @@
--- ---
dependency: dependency:
name: galaxy name: shell
command: python3 -m pip install pytest-testinfra
driver: driver:
name: docker name: docker
platforms: platforms:
# On "${name:-${image:-debian}", the last brace does not miss, it works like that... # On "${name:-${image:-debian}", the last brace does not miss, it works like that...
# The env var "name" should be used when the image variable refers to a full registry path like registry.access.redhat.com/ubi8/ubi # The env var should be used when the image variable refers to a full registry path like registry.access.redhat.com/ubi8/ubi
- name: claranet_motd_${name:-${image:-debian}-${tag:-latest}-${scenario:-default} - name: claranet_motd_${name:-${image:-debian}-${tag:-latest}-${scenario:-default}
image: ${image:-debian}:${tag:-latest} image: ${image:-debian}:${tag:-latest}
privileged: true privileged: true
@ -26,13 +27,14 @@ provisioner:
name: ansible name: ansible
env: env:
ANSIBLE_FORCE_COLOR: "true" ANSIBLE_FORCE_COLOR: "true"
ANSIBLE_LOAD_CALLBACK_PLUGINS: "true"
ANSIBLE_STDOUT_CALLBACK: "ansible.posix.debug"
ANSIBLE_CALLBACKS_ENABLED: "ansible.posix.profile_tasks"
options: options:
v: true v: true
verifier: verifier:
name: testinfra name: testinfra
lint:
name: flake8
options: options:
verbose: true verbose: true
s: true s: true

View File

@ -3,7 +3,7 @@
ansible.builtin.include_tasks: disable_default_motd.yml ansible.builtin.include_tasks: disable_default_motd.yml
when: motd_disable_default_motd|bool when: motd_disable_default_motd|bool
- name: configure_motd | Apply template {{ motd_template }} on {{ _motd_file_path }} - name: "Configure_motd | Apply template {{ motd_template + ' in ' + _motd_file_path }}"
ansible.builtin.copy: ansible.builtin.copy:
content: "{{ motd_template_prepend + _motd_template_content + motd_template_append }}" content: "{{ motd_template_prepend + _motd_template_content + motd_template_append }}"
dest: "{{ _motd_file_path }}" dest: "{{ _motd_file_path }}"
@ -13,7 +13,7 @@
tags: tags:
- molecule-idempotence-notest - molecule-idempotence-notest
- name: configure_motd | Add pam_exec {{ _motd_file_path }} in pam - name: Configure_motd | Add in pam pam_exec {{ _motd_file_path }}
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: "{{ item }}" path: "{{ item }}"
line: session optional pam_exec.so type=open_session stdout {{ _motd_file_path }} line: session optional pam_exec.so type=open_session stdout {{ _motd_file_path }}