mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
21 lines
448 B
YAML
21 lines
448 B
YAML
|
- name: Start and enable syncthing
|
||
|
tags: ["once"]
|
||
|
systemd:
|
||
|
name: syncthing@{{ user }}
|
||
|
enabled: true
|
||
|
state: started
|
||
|
become: true
|
||
|
|
||
|
- name: Set hostname for linux
|
||
|
tags: ["once"]
|
||
|
shell: >
|
||
|
hostnamectl set-hostname {{ hostname }}
|
||
|
become: true
|
||
|
|
||
|
- name: Change sudo settings
|
||
|
lineinfile:
|
||
|
path: /etc/sudoers
|
||
|
regexp: ^Defaults env_reset
|
||
|
line: Defaults env_reset,timestamp_timeout=60,!tty_tickets
|
||
|
become: yes
|