ansible playbook to install log2ram

Merge pull request #156 from smu/master
This commit is contained in:
azlux 2021-06-23 16:15:47 +02:00 committed by GitHub
commit e41b7630fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
---
- hosts: all
become: true
tasks:
- name: Add apt-key for new repository
apt_key:
keyserver: keyserver.ubuntu.com
id: CA548A0A0312D8E6
- name: Add log2ram to sources.list
apt_repository:
repo: deb http://packages.azlux.fr/debian/ buster main
state: present
- name: update pkg database
apt:
upgrade: yes
update_cache: yes
- name: Install log2ram
apt:
pkg:
- log2ram
- name: modify config
lineinfile:
path: /etc/log2ram.conf
regexp: '^SIZE=(.*)$'
line: 'SIZE=80M'
backrefs: yes
- name: Start log2ram service
systemd:
state: started
name: log2ram