refactor: update dotfiles paths and remove obsolete configurations
Some checks failed
Nix Format Check / check-format (push) Failing after 40s
Some checks failed
Nix Format Check / check-format (push) Failing after 40s
This commit is contained in:
@@ -1,19 +1,13 @@
|
||||
- name: Ensure Tailscale is installed
|
||||
ansible.builtin.package:
|
||||
name: tailscale
|
||||
state: present
|
||||
become: true
|
||||
|
||||
- name: Check if Tailscale is installed
|
||||
ansible.builtin.command: tailscale
|
||||
ansible.builtin.command: which tailscale
|
||||
register: tailscale_check
|
||||
changed_when: false
|
||||
failed_when: false
|
||||
|
||||
- name: Install Tailscale
|
||||
ansible.builtin.command: tailscale up
|
||||
- name: Install Tailscale using curl script
|
||||
ansible.builtin.shell: curl -fsSL https://tailscale.com/install.sh | sh
|
||||
args:
|
||||
creates: /var/lib/tailscale/tailscaled.state
|
||||
creates: /usr/bin/tailscale
|
||||
when: tailscale_check.rc != 0
|
||||
become: true
|
||||
|
||||
|
Reference in New Issue
Block a user