-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Install latest Tailscale version by default
- Loading branch information
Showing
9 changed files
with
28 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ exclude_paths: | |
|
||
skip_list: | ||
- line-length | ||
- package-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,8 @@ | ||
--- | ||
|
||
- name: Arch | Install Tailscale | ||
become: true | ||
pacman: | ||
name: '{{ tailscale_package }}' | ||
update_cache: true | ||
state: present | ||
when: not upgrade_release | bool | ||
|
||
- name: Arch | Install or upgrade Tailscale | ||
become: true | ||
pacman: | ||
name: '{{ tailscale_package }}' | ||
update_cache: true | ||
state: latest | ||
when: upgrade_release | bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
--- | ||
# vars file for artis3n.tailscale | ||
# Variables that a user may want to modify. | ||
|
||
# Required Node auth key to authenticate to Tailscale | ||
tailscale_auth_key: null | ||
# Optional command-line arguments for 'tailscale up' | ||
tailscale_args: null | ||
# Whether to output debug information during role execution | ||
verbose: false | ||
# Whether to skip 'tailscale up' | ||
tailscale_up_skip: false | ||
# Whether to always run 'tailscale up' | ||
force: false | ||
# Whether to use the stable or unstable upstream Tailscale build. | ||
# Strongly recommend to leave on 'stable' unless you know what you're doing | ||
release_stability: stable |