diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c00f3c..1f7278a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,15 +15,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the codebase - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python 3 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install test dependencies - run: pip install ansible-lint[community,yamllint] + run: | + pip install ansible-lint + ansible-galaxy install -r requirements.yml - name: Lint code run: | @@ -43,11 +45,8 @@ jobs: matrix: include: - distro: debian8 - ansible-version: '<2.10' - distro: debian9 - distro: debian10 - - distro: ubuntu1604 - ansible-version: '>=2.9, <2.10' - distro: ubuntu1604 ansible-version: '>=2.10, <2.11' - distro: ubuntu1604 @@ -56,12 +55,12 @@ jobs: steps: - name: Check out the codebase - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: "${{ github.repository }}" - name: Set up Python 3 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: '3.x' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b34abe..5cc5164 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the codebase - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Publish to Galaxy uses: robertdebock/galaxy-action@1.2.0 diff --git a/Dockerfile b/Dockerfile index b179278..6ebe0c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,20 @@ -FROM ubuntu:16.04 +FROM ubuntu:18.04 MAINTAINER Mischa ter Smitten +ENV LANG C.UTF-8 +ENV LC_ALL C.UTF-8 + # python RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-dev curl && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y python3-minimal python3-dev curl && \ apt-get clean -RUN curl -sL https://bootstrap.pypa.io/pip/2.7/get-pip.py | python - +RUN curl -sL https://bootstrap.pypa.io/pip/3.6/get-pip.py | python3 - RUN rm -rf $HOME/.cache # ansible -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc libffi-dev libssl-dev && \ +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3-apt && \ apt-get clean -RUN pip install ansible==2.9.15 +RUN pip3 install ansible==2.10.7 RUN rm -rf $HOME/.cache # provision diff --git a/meta/main.yml b/meta/main.yml index 485516a..3c3d689 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -1,13 +1,12 @@ # meta file --- galaxy_info: - namespace: oefenweb + author: oefenweb role_name: logcheck - author: Mischa ter Smitten company: Oefenweb.nl B.V. description: Set up logcheck in Debian-like systems license: MIT - min_ansible_version: 2.9.0 + min_ansible_version: 2.10.0 platforms: - name: Ubuntu versions: diff --git a/molecule/default/collections.yml b/molecule/default/collections.yml new file mode 100644 index 0000000..c3d7e2a --- /dev/null +++ b/molecule/default/collections.yml @@ -0,0 +1,6 @@ +--- +collections: + - name: community.docker + version: '>=1.2.0,<2' + - name: community.general + version: '>=2,<3' diff --git a/requirements.yml b/requirements.yml new file mode 100644 index 0000000..3d5f1cd --- /dev/null +++ b/requirements.yml @@ -0,0 +1,3 @@ +# requirements file +--- +collections: [] diff --git a/tasks/main.yml b/tasks/main.yml index 05c1b29..90ef469 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,7 +1,7 @@ # tasks file --- -- name: install dependencies - apt: +- name: install dependencies # noqa args[module] + ansible.builtin.apt: name: "{{ logcheck_dependencies }}" state: "{{ apt_install_state | default('latest') }}" update_cache: true @@ -11,8 +11,8 @@ - logcheck - logcheck-dependencies -- name: install additional - apt: +- name: install additional # noqa args[module] + ansible.builtin.apt: name: "{{ logcheck_install }}" state: "{{ apt_install_state | default('latest') }}" tags: @@ -21,7 +21,7 @@ - logcheck-install - name: update configuration file - /etc/logcheck/logcheck.conf - template: + ansible.builtin.template: src: etc/logcheck/logcheck.conf.j2 dest: /etc/logcheck/logcheck.conf owner: root @@ -33,7 +33,7 @@ - logcheck-configuration - name: update configuration file - /etc/logcheck/logcheck.logfiles - template: + ansible.builtin.template: src: etc/logcheck/logcheck.logfiles.j2 dest: /etc/logcheck/logcheck.logfiles owner: root @@ -45,7 +45,7 @@ - logcheck-configuration - name: update cron.d script - template: + ansible.builtin.template: src: etc/cron.d/logcheck.j2 dest: /etc/cron.d/logcheck owner: root @@ -59,7 +59,7 @@ - logcheck-cron-d - name: update (custom) ignore.d rules - template: + ansible.builtin.template: src: etc/logcheck/ignore.d/custom.j2 dest: "/etc/logcheck/ignore.d.{{ logcheck_reportlevel }}/custom" owner: root