mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-24 22:43:07 +02:00
* Refactoring, Linting and additional tests * Vultr: Undefined variable and deprecation notes fix * Travis-CI enable linters * Azure: Update python requirements * Update main.yml * Update install.sh * Add missing roles to ansible-lint * Linting for skipped roles * add .ansible-lint config
29 lines
621 B
YAML
29 lines
621 B
YAML
---
|
|
- name: Install unattended-upgrades
|
|
apt:
|
|
name: unattended-upgrades
|
|
state: present
|
|
|
|
- name: Configure unattended-upgrades
|
|
template:
|
|
src: 50unattended-upgrades.j2
|
|
dest: /etc/apt/apt.conf.d/50unattended-upgrades
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|
|
- name: Periodic upgrades configured
|
|
template:
|
|
src: 10periodic.j2
|
|
dest: /etc/apt/apt.conf.d/10periodic
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|
|
- name: Unattended reboots configured
|
|
template:
|
|
src: 60unattended-reboot.j2
|
|
dest: /etc/apt/apt.conf.d/60unattended-reboot
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|