diff options
author | binary <me@rgoncalves.se> | 2020-11-18 09:41:20 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-11-18 09:41:20 +0100 |
commit | 680d88cdd468e7bed9a46f2550cac0e59f835cfa (patch) | |
tree | 4cffc26ce1a4a940c79324dd1637067943681b48 /roles/tools/vars | |
parent | 874a27a2e86b82bc381bc7270b2bec3d9dfb7114 (diff) | |
download | infrastructure-680d88cdd468e7bed9a46f2550cac0e59f835cfa.tar.gz |
Refactor package installation in tools role
Diffstat (limited to 'roles/tools/vars')
-rw-r--r-- | roles/tools/vars/main.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roles/tools/vars/main.yml b/roles/tools/vars/main.yml new file mode 100644 index 0000000..80fd1a0 --- /dev/null +++ b/roles/tools/vars/main.yml @@ -0,0 +1,23 @@ + +# tools ~~ roles/tools/vars/main.yml + +--- + +packages: + + alpine: + sshfs: "sshfs" + wireguard: "wireguard" + + debian: + sshfs: "sshfs" + wireguard: "wireguard" + + freebsd: + sshfs: "fusefs-sshfs" + wireguard: "wireguard" + + openbsd: + sshfs: "sshfs-fuse" + wireguard: "wireguard-tools" + |