Ansible_workstation/roles/workstation/tasks/main.yml

37 lines
774 B
YAML
Raw Normal View History

2022-01-05 13:03:11 +00:00
---
# tasks file for workstation
- name: Install for arch
import_tasks: arch.yml
when: ansible_os_family == "Archlinux"
- name: enable service cups
systemd:
name: cups
# name: org.cups.cups
enabled: yes
state: started
- name: Set hostname resolution
ansible.builtin.lineinfile:
path: /etc/nsswitch.conf
regexp: "^hosts:"
2022-01-05 13:21:33 +00:00
line: "hosts: files mymachines myhostname mdns_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] dns"
2022-01-05 13:03:11 +00:00
- name: enable service avahi-daemon
systemd:
name: avahi-daemon
enabled: yes
state: started
- name: enable service nfs
systemd:
name: nfs-client.target
enabled: yes
state: started
2022-01-05 13:21:33 +00:00
- name: Enable autofs daemon
service:
name: autofs
state: started
enabled: yes