Move single ansible playbook to ansible directory
Make ansible playbook properly- use ansible-galaxy init commands.
This commit is contained in:
15
ansible/arch_bluetooth/tasks/main.yml
Normal file
15
ansible/arch_bluetooth/tasks/main.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
# Bluetooth
|
||||
- name: Ensure bluetooth installed and configured
|
||||
community.general.pacman:
|
||||
name:
|
||||
- bluez
|
||||
- bluez-utils
|
||||
state: present
|
||||
become: yes
|
||||
- name: Ensure bluetooth service started
|
||||
ansible.builtin.systemd:
|
||||
name: bluetooth
|
||||
state: started
|
||||
enabled: yes
|
||||
become: yes
|
||||
Reference in New Issue
Block a user