Configure action_mail_acct in auditd.conf from the alert_email variable #92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: shellcheck | |
on: [push, pull_request] | |
env: | |
ANSIBLE_FORCE_COLOR: '1' | |
jobs: | |
profile_d: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install ShellCheck | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y shellcheck | |
- name: Run Ansible playbook for shells | |
run: ansible-playbook harden.yml --tags shells | |
- name: Run ShellCheck | |
run: shellcheck --shell=bash newconfs/profile.d/* /etc/profile.d/tmout.sh |