Merge branch 'master' of git.fudiggity.nl:ansible/arch-setup

This commit is contained in:
Sonny Bakker 2021-06-04 22:16:52 +02:00
commit 26ec1f97a6
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@
scope: user
- name: restart powertop
become: yes
become: true
systemd:
name: powertop
state: restarted

View file

@ -1,13 +1,13 @@
- hosts: localhost
pre_tasks:
- name: install shared packages
become: yes
become: true
pacman:
name: '{{ packages }}'
- name: detecting platform
import_tasks: 'tasks/platform.yml'
- name: install platform specific packages
become: yes
become: true
pacman:
name: '{{ platform_packages }}'
roles: