Compare commits
122 Commits
18.04
...
30c99c6516
| Author | SHA1 | Date | |
|---|---|---|---|
| 30c99c6516 | |||
| 49b292126e | |||
| 67a37e0a56 | |||
| 1f4c43a4a1 | |||
| 3b31dc06fe | |||
| 876db8ecfb | |||
| 959f4b2b32 | |||
| d8c6c6a808 | |||
| 5420eb9cd5 | |||
| 3fee590a8f | |||
| 0b71c22019 | |||
| db0b181473 | |||
| 65d96b2faa | |||
| 1749c78364 | |||
| b560f9c7d9 | |||
| 8ef426139b | |||
| d1c3184400 | |||
| 910be1641d | |||
| d4393851b1 | |||
| 8fae111d0e | |||
| 5b62791bf6 | |||
| ad9d1fbe4f | |||
| c4d4f5395a | |||
| 5ac1081f90 | |||
| a80d8e1574 | |||
| dbd8af4648 | |||
| 23f0fd7f23 | |||
| bdbb6a3f3b | |||
| 7148f492b0 | |||
| 03de2224f8 | |||
| d4d37fb6bc | |||
| 1608987eef | |||
| b4d4bd0664 | |||
| 39268ae7aa | |||
| 368982b8fa | |||
| b3cd84e181 | |||
| b0d2fd212e | |||
| f7ee7af25c | |||
| 50a9cc97b6 | |||
| e2d1414c3b | |||
| 576eb2ae41 | |||
| 69bcd75f7b | |||
| d32588dbfd | |||
| 4783803a77 | |||
| 1ad397771d | |||
| 6ff50854e0 | |||
| 5cba48f632 | |||
| 7e9166cb48 | |||
| 747f1a6992 | |||
| db3d146dc9 | |||
| 91839b927d | |||
| c5e2a76d2e | |||
| baa0206937 | |||
| 2abc38f696 | |||
| 63ff47c3b2 | |||
| da4b8858d3 | |||
| d95f1f7e32 | |||
| 7da67aaed0 | |||
| 7ec59f8c52 | |||
| bebe6de7cd | |||
| 08af0f00b6 | |||
| 3864c0f35d | |||
| 3218722fcb | |||
| 1895f1561d | |||
| cee0c443a3 | |||
| bb945190f8 | |||
| 4f5a2e6333 | |||
| 833f9a25ef | |||
| 1fbdcdd487 | |||
| 9efb5d6c15 | |||
| d99657e3b8 | |||
| b159445520 | |||
| 6a4a182cf5 | |||
| 55cc3441be | |||
| bd4e5f1941 | |||
| c9845be40c | |||
| f47b45d82c | |||
| 854bf8d1e9 | |||
| 3272331f08 | |||
| 8c9af58146 | |||
| e4a08c843c | |||
| c77b356968 | |||
| 7404c0ae59 | |||
| 06b511d823 | |||
| 9693194f7f | |||
| 337237a6e8 | |||
| 31eba75038 | |||
| 5728aba7df | |||
| 76b6d63064 | |||
| 189371d7f2 | |||
| 491a9a07b5 | |||
| c4e87f2022 | |||
| 09e7ec3ad4 | |||
| c596fcb87a | |||
| 441343fd7c | |||
| 1184062dc7 | |||
| d172e171b2 | |||
| 651909ff71 | |||
| 60a147124f | |||
| 3aa7bcfa2e | |||
| 01c1ca74a3 | |||
| f4bcbbbe09 | |||
| 69cb941a85 | |||
| f7a5e3728f | |||
| d1cfa8c98e | |||
| 64ecd88c93 | |||
| 7642c62ecf | |||
| 1117ca00f7 | |||
| de8c0a119d | |||
| 2eaf11b8a5 | |||
| bcbaa9dfcf | |||
| d6e09f2317 | |||
| 179273c22b | |||
| 51d48f7f49 | |||
| c2f1cd3201 | |||
| c9d2e66438 | |||
| f6e60b8417 | |||
| e1745bd162 | |||
| 44c1e5ccff | |||
| 5dfb92522e | |||
| 14c14353f8 | |||
| 3061ade54f |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1 +1,3 @@
|
|||||||
external
|
external
|
||||||
|
modules/win_git*
|
||||||
|
playbooks/test.yaml
|
||||||
|
|||||||
5
ansible.cfg
Normal file
5
ansible.cfg
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[defaults]
|
||||||
|
collections_path = collections
|
||||||
|
library = modules
|
||||||
|
roles_path = roles
|
||||||
|
stdout_callback = yaml
|
||||||
4
playbooks/1password.yaml
Normal file
4
playbooks/1password.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- 1password
|
||||||
7
playbooks/Linux.yaml
Normal file
7
playbooks/Linux.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- import_playbook: LinuxCLI.yaml
|
||||||
|
- import_playbook: UnixGUI.yaml
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: gnome-shell
|
||||||
|
- role: kitty
|
||||||
6
playbooks/LinuxCLI.yaml
Normal file
6
playbooks/LinuxCLI.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- import_playbook: UnixCLI.yaml
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: gdb
|
||||||
|
- role: system-info
|
||||||
32
playbooks/UnixCLI.yaml
Normal file
32
playbooks/UnixCLI.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: sudo
|
||||||
|
when: ansible_user_id != "root"
|
||||||
|
- role: python
|
||||||
|
|
||||||
|
- role: zsh
|
||||||
|
- role: neovim
|
||||||
|
- role: tmux
|
||||||
|
|
||||||
|
- role: ag
|
||||||
|
- role: bash
|
||||||
|
- role: bat
|
||||||
|
- role: curl
|
||||||
|
- role: editline
|
||||||
|
- role: fzf
|
||||||
|
- role: gh
|
||||||
|
- role: git
|
||||||
|
- role: glab
|
||||||
|
- role: htop
|
||||||
|
- role: jp
|
||||||
|
- role: jq
|
||||||
|
- role: readline
|
||||||
|
- role: tidy
|
||||||
|
- role: tree
|
||||||
|
- role: watch
|
||||||
|
- role: wget
|
||||||
|
- role: yq
|
||||||
|
|
||||||
|
- role: llvm
|
||||||
|
- role: nodejs
|
||||||
7
playbooks/UnixGUI.yaml
Normal file
7
playbooks/UnixGUI.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: 1password
|
||||||
|
- role: fonts
|
||||||
|
- role: obsidian
|
||||||
|
- role: webcatalog
|
||||||
6
playbooks/WSL.yaml
Normal file
6
playbooks/WSL.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- import_playbook: UnixCLI.yaml
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: gdb
|
||||||
|
- role: wsl
|
||||||
36
playbooks/Windows.yaml
Normal file
36
playbooks/Windows.yaml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
- hosts: windows
|
||||||
|
|
||||||
|
vars:
|
||||||
|
install_cad_apps: false
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- role: python
|
||||||
|
- role: git
|
||||||
|
- role: powershell
|
||||||
|
- role: neovim
|
||||||
|
- role: system-info
|
||||||
|
|
||||||
|
- role: ag
|
||||||
|
- role: bat
|
||||||
|
- role: curl
|
||||||
|
- role: fzf
|
||||||
|
- role: gh
|
||||||
|
- role: jq
|
||||||
|
- role: tree
|
||||||
|
- role: yq
|
||||||
|
|
||||||
|
- role: llvm
|
||||||
|
- role: nodejs
|
||||||
|
|
||||||
|
- role: 1password
|
||||||
|
- role: autohotkey
|
||||||
|
- role: firefox
|
||||||
|
- role: obsidian
|
||||||
|
- role: powertoys
|
||||||
|
- role: windows-terminal
|
||||||
|
|
||||||
|
- role: autodesk-fusion360
|
||||||
|
when: install_cad_apps
|
||||||
|
- role: prusaslicer
|
||||||
|
when: install_cad_apps
|
||||||
14
playbooks/macOS.yaml
Normal file
14
playbooks/macOS.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
- import_playbook: UnixCLI.yaml
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: system-info
|
||||||
|
- import_playbook: UnixGUI.yaml
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: mas
|
||||||
|
|
||||||
|
- role: iterm
|
||||||
|
- role: magnet
|
||||||
|
- role: microsoft-remote-desktop
|
||||||
|
- role: viscosity
|
||||||
@@ -1,5 +1,9 @@
|
|||||||
---
|
---
|
||||||
- name: install homebrew package
|
- name: install homebrew package
|
||||||
homebrew_cask:
|
homebrew_cask:
|
||||||
name: 1password
|
name:
|
||||||
|
- 1password
|
||||||
|
- 1password-cli
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- include_tasks: zsh-completion.yaml
|
||||||
|
|||||||
@@ -1 +1,51 @@
|
|||||||
# TODO: https://support.1password.com/install-linux/#debian-or-ubuntu
|
---
|
||||||
|
- set_fact:
|
||||||
|
keyring: /etc/apt/trusted.gpg.d/1password-archive-keyring.gpg
|
||||||
|
|
||||||
|
- name: add apt signing key
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
apt_key:
|
||||||
|
url: https://downloads.1password.com/linux/keys/1password.asc
|
||||||
|
keyring: '{{keyring}}'
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- when: ansible_machine == 'x86_64'
|
||||||
|
set_fact:
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that: arch is defined
|
||||||
|
fail_msg: 'Architecture not currently supported: {{ansible_machine}}'
|
||||||
|
|
||||||
|
- name: add apt repository
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
apt_repository:
|
||||||
|
repo: >-
|
||||||
|
deb [arch={{arch}} signed-by={{keyring}}]
|
||||||
|
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
||||||
|
filename: 1password
|
||||||
|
|
||||||
|
- name: install gui package
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: 1password
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: install cli package
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: 1password-cli
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: create symlink to op.exe
|
||||||
|
when: '"WSL" in ansible_kernel'
|
||||||
|
file:
|
||||||
|
state: link
|
||||||
|
src: /mnt/c/Users/Benie/AppData/Local/1Password/cli/op.exe
|
||||||
|
dest: ~/.local/bin/op
|
||||||
|
|
||||||
|
- include_tasks: zsh-completion.yaml
|
||||||
|
|||||||
22
roles/1password/tasks/RedHat.yaml
Normal file
22
roles/1password/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
- name: add yum repository key
|
||||||
|
become: true
|
||||||
|
rpm_key:
|
||||||
|
key: https://downloads.1password.com/linux/keys/1password.asc
|
||||||
|
|
||||||
|
- name: add yum repository
|
||||||
|
become: true
|
||||||
|
yum_repository:
|
||||||
|
name: 1password
|
||||||
|
description: 1Password Stable Channel
|
||||||
|
baseurl: https://downloads.1password.com/linux/rpm/stable/$basearch
|
||||||
|
enabled: true
|
||||||
|
gpgcheck: true
|
||||||
|
repo_gpgcheck: true
|
||||||
|
gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc']
|
||||||
|
|
||||||
|
- name: install yum package
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name: 1password
|
||||||
|
state: latest
|
||||||
@@ -1,12 +1,111 @@
|
|||||||
---
|
---
|
||||||
- name: install chocolatey package
|
# NOTE: The 1Password chocolatey packages are not up to date.
|
||||||
win_chocolatey:
|
|
||||||
name:
|
# GUI
|
||||||
- 1password
|
- set_fact:
|
||||||
state: latest
|
app_exe: '{{ansible_env.LOCALAPPDATA}}/1Password/app/8/1Password.exe'
|
||||||
|
installer_exe: '{{ansible_env.TEMP}}/1PasswordSetup-latest.exe'
|
||||||
|
|
||||||
|
- name: check if already installed
|
||||||
|
win_stat:
|
||||||
|
path: '{{app_exe}}'
|
||||||
|
register: app_stat
|
||||||
|
|
||||||
|
- name: get installed version
|
||||||
|
when: app_stat.stat.exists == True
|
||||||
|
win_command: '{{app_exe}} --version'
|
||||||
|
register: app_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: app_stat.stat.exists == True
|
||||||
|
set_fact:
|
||||||
|
installed_version: '{{app_version.stdout.strip()}}'
|
||||||
|
|
||||||
|
- name: download latest installer
|
||||||
|
win_get_url:
|
||||||
|
url: https://downloads.1password.com/win/1PasswordSetup-latest.exe
|
||||||
|
dest: '{{installer_exe}}'
|
||||||
|
|
||||||
|
- name: get installer version
|
||||||
|
win_shell: |
|
||||||
|
(Get-ItemProperty {{installer_exe}}).VersionInfo.ProductVersion
|
||||||
|
register: installer_product_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
# FIXME: The [5:] is to account for a mystery "\e[6 q" prefix, not sure if this
|
||||||
|
# is consistent across machines or some other oddity.
|
||||||
|
- set_fact:
|
||||||
|
installer_version: '{{installer_product_version.stdout.strip()[5:]}}'
|
||||||
|
|
||||||
|
- name: run installer
|
||||||
|
when: installed_version is not defined or installed_version != installer_version
|
||||||
|
win_command: '{{installer_exe}}'
|
||||||
|
|
||||||
- name: create start menu shortcut
|
- name: create start menu shortcut
|
||||||
win_shortcut:
|
win_shortcut:
|
||||||
src: '{{ansible_env.LOCALAPPDATA}}/1Password/app/7/1Password.exe'
|
src: '{{app_exe}}'
|
||||||
dest: '{{ansible_env.ProgramData}}/Microsoft/Windows/Start Menu/Programs/1Password.lnk'
|
dest: '{{ansible_env.ProgramData}}/Microsoft/Windows/Start Menu/Programs/1Password.lnk'
|
||||||
icon: '{{ansible_env.LOCALAPPDATA}}/1Password/app/7/1Password.exe,0'
|
icon: '{{app_exe}},0'
|
||||||
|
|
||||||
|
# CLI
|
||||||
|
- set_fact:
|
||||||
|
cli_dir: '{{ansible_env.LOCALAPPDATA}}\1Password\cli'
|
||||||
|
cli_zip: '{{ansible_env.TEMP}}/op_windows_amd64.zip'
|
||||||
|
- set_fact:
|
||||||
|
cli_exe: '{{cli_dir}}\op.exe'
|
||||||
|
|
||||||
|
- name: check if op already installed
|
||||||
|
win_stat:
|
||||||
|
path: '{{cli_exe}}'
|
||||||
|
register: cli_stat
|
||||||
|
|
||||||
|
- name: get installed op version
|
||||||
|
when: cli_stat.stat.exists == True
|
||||||
|
win_command: '{{cli_exe}} --version'
|
||||||
|
register: cli_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: cli_stat.stat.exists == True
|
||||||
|
set_fact:
|
||||||
|
cli_installed_version: '{{cli_version.stdout.strip()}}'
|
||||||
|
|
||||||
|
- name: get list of op releases
|
||||||
|
win_uri:
|
||||||
|
url: https://raw.githubusercontent.com/kbenzie/op-release-scraper/main/op-releases.json
|
||||||
|
return_content: true
|
||||||
|
register: releases
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
latest: '{{releases.json[0]}}'
|
||||||
|
|
||||||
|
- name: download latest op zip archive
|
||||||
|
when: cli_installed_version is not defined or cli_installed_version != latest.version
|
||||||
|
win_get_url:
|
||||||
|
url: '{{latest.downloads.Windows.amd64}}'
|
||||||
|
dest: '{{cli_zip}}'
|
||||||
|
|
||||||
|
- name: unzip op zip archive
|
||||||
|
when: cli_installed_version is not defined or cli_installed_version != latest.version
|
||||||
|
win_unzip:
|
||||||
|
src: '{{cli_zip}}'
|
||||||
|
dest: '{{cli_dir}}'
|
||||||
|
|
||||||
|
- name: add op install directory to user PATH
|
||||||
|
win_path:
|
||||||
|
scope: user
|
||||||
|
name: Path
|
||||||
|
elements: '{{cli_dir}}'
|
||||||
|
|
||||||
|
- name: get op powershell completion script
|
||||||
|
win_command:
|
||||||
|
argv:
|
||||||
|
- '{{ansible_env.LOCALAPPDATA}}/1Password/cli/op.exe'
|
||||||
|
- completion
|
||||||
|
- powershell
|
||||||
|
register: powershell_completion_script
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- name: create op powershell completion file
|
||||||
|
win_copy:
|
||||||
|
content: '{{powershell_completion_script.stdout}}'
|
||||||
|
dest: '{{cli_dir}}/opProfile.psm1'
|
||||||
|
|||||||
15
roles/1password/tasks/zsh-completion.yaml
Normal file
15
roles/1password/tasks/zsh-completion.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
- name: get op zsh completion script
|
||||||
|
command: op completion zsh
|
||||||
|
register: zsh_completion_script
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- name: create local zsh site functions directory
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
path: ~/.local/share/zsh/site-functions
|
||||||
|
|
||||||
|
- name: create op zsh completion file
|
||||||
|
copy:
|
||||||
|
content: '{{zsh_completion_script.stdout}}'
|
||||||
|
dest: ~/.local/share/zsh/site-functions/_op
|
||||||
5
roles/ag/tasks/Darwin.yaml
Normal file
5
roles/ag/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: the_silver_searcher
|
||||||
|
state: latest
|
||||||
6
roles/ag/tasks/Debian.yaml
Normal file
6
roles/ag/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: silversearcher-ag
|
||||||
|
state: latest
|
||||||
6
roles/ag/tasks/RedHat.yaml
Normal file
6
roles/ag/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install yum package
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name: the_silver_searcher
|
||||||
|
state: latest
|
||||||
5
roles/ag/tasks/Windows.yaml
Normal file
5
roles/ag/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: ag
|
||||||
|
state: latest
|
||||||
2
roles/ag/tasks/main.yaml
Normal file
2
roles/ag/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
8
roles/autodesk-fusion360/tasks/main.yaml
Normal file
8
roles/autodesk-fusion360/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == "Windows"
|
||||||
|
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: autodesk-fusion360
|
||||||
|
state: latest
|
||||||
@@ -7,8 +7,31 @@
|
|||||||
- name: clone config repo
|
- name: clone config repo
|
||||||
win_git:
|
win_git:
|
||||||
repo: git@code.infektor.net:config/AutoHotKey.git
|
repo: git@code.infektor.net:config/AutoHotKey.git
|
||||||
dest: '{{ansible_env.LOCALAPPDATA}}/AutoHotKey'
|
dest: '{{autohotkey_repo_dir}}'
|
||||||
branch: master
|
branch: master
|
||||||
|
- win_owner:
|
||||||
|
path: '{{autohotkey_repo_dir}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
|
||||||
# TODO: - name: create scheduled task
|
- name: create scheduled task
|
||||||
# win_scheduled_task:
|
win_scheduled_task:
|
||||||
|
path: Benie
|
||||||
|
name: macOS.ahk
|
||||||
|
state: present
|
||||||
|
enable: true
|
||||||
|
triggers:
|
||||||
|
- type: logon
|
||||||
|
enabled: true
|
||||||
|
- type: registration
|
||||||
|
enabled: true
|
||||||
|
actions:
|
||||||
|
- path: '{{autohotkey_repo_dir}}/macOS.ahk'
|
||||||
|
disallow_start_if_on_batteries: false
|
||||||
|
stop_if_going_on_batteries: false
|
||||||
|
execution_time_limit: PT0S
|
||||||
|
logon_type: interactive_token
|
||||||
|
multiple_instances: 3
|
||||||
|
run_level: highest
|
||||||
|
start_when_available: true
|
||||||
|
wake_to_run: false
|
||||||
|
|||||||
2
roles/autohotkey/vars/main.yaml
Normal file
2
roles/autohotkey/vars/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
autohotkey_repo_dir: '{{ansible_env.LOCALAPPDATA}}/AutoHotKey'
|
||||||
5
roles/bash/tasks/main.yaml
Normal file
5
roles/bash/tasks/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: create ~/.bashrc file
|
||||||
|
template:
|
||||||
|
src: templates/bashrc
|
||||||
|
dest: ~/.bashrc
|
||||||
112
roles/bash/templates/bashrc
Normal file
112
roles/bash/templates/bashrc
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
# If not running interactively, don't do anything
|
||||||
|
case $- in
|
||||||
|
*i*) ;;
|
||||||
|
*) return;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# don't put duplicate lines or lines starting with space in the history.
|
||||||
|
# See bash(1) for more options
|
||||||
|
HISTCONTROL=ignoreboth
|
||||||
|
|
||||||
|
# append to the history file, don't overwrite it
|
||||||
|
shopt -s histappend
|
||||||
|
|
||||||
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||||
|
HISTSIZE=1000
|
||||||
|
HISTFILESIZE=2000
|
||||||
|
|
||||||
|
# check the window size after each command and, if necessary,
|
||||||
|
# update the values of LINES and COLUMNS.
|
||||||
|
shopt -s checkwinsize
|
||||||
|
|
||||||
|
# make less more friendly for non-text input files, see lesspipe(1)
|
||||||
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||||
|
|
||||||
|
# enable color support of ls and also add handy aliases
|
||||||
|
if [ -x /usr/bin/dircolors ]; then
|
||||||
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias dir='dir --color=auto'
|
||||||
|
alias vdir='vdir --color=auto'
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias fgrep='fgrep --color=auto'
|
||||||
|
alias egrep='egrep --color=auto'
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f ~/.bash_aliases ]; then
|
||||||
|
. ~/.bash_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
|
# enable programmable completion features (you don't need to enable
|
||||||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||||
|
# sources /etc/bash.bashrc).
|
||||||
|
if ! shopt -oq posix; then
|
||||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
|
. /usr/share/bash-completion/bash_completion
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
. /etc/bash_completion
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Enable vi mode
|
||||||
|
set -o vi
|
||||||
|
|
||||||
|
function _prompt_first_line {
|
||||||
|
local exit_code=$?
|
||||||
|
if [ "$exit_code" = "0" ]; then
|
||||||
|
exit_code=
|
||||||
|
else
|
||||||
|
# If the last command failed, display its error code at the right
|
||||||
|
case $exit_code in
|
||||||
|
129) exit_code="SIGHUP" ;; # 128 + 1
|
||||||
|
130) exit_code="SIGINT" ;; # 128 + 2
|
||||||
|
131) exit_code="SIGQUIT" ;; # 128 + 3
|
||||||
|
132) exit_code="SIGILL" ;; # 128 + 4
|
||||||
|
133) exit_code="SIGTRAP" ;; # 128 + 5
|
||||||
|
134) exit_code="SIGABRT" ;; # 128 + 6
|
||||||
|
134) exit_code="SIGIOT" ;; # 128 + 6
|
||||||
|
135) exit_code="SIGBUS" ;; # 128 + 7
|
||||||
|
136) exit_code="SIGFPE" ;; # 128 + 8
|
||||||
|
137) exit_code="SIGKILL" ;; # 128 + 9
|
||||||
|
138) exit_code="SIGUSR1" ;; # 128 + 10
|
||||||
|
139) exit_code="SIGSEGV" ;; # 128 + 11
|
||||||
|
140) exit_code="SIGUSR2" ;; # 128 + 12
|
||||||
|
141) exit_code="SIGPIPE" ;; # 128 + 13
|
||||||
|
142) exit_code="SIGALRM" ;; # 128 + 14
|
||||||
|
143) exit_code="SIGTERM" ;; # 128 + 15
|
||||||
|
144) exit_code="SIGSTKFLT" ;; # 128 + 16
|
||||||
|
145) exit_code="SIGCHLD" ;; # 128 + 17
|
||||||
|
146) exit_code="SIGCONT" ;; # 128 + 18
|
||||||
|
147) exit_code="SIGSTOP" ;; # 128 + 19
|
||||||
|
148) exit_code="SIGTSTP" ;; # 128 + 20
|
||||||
|
149) exit_code="SIGTTIN" ;; # 128 + 21
|
||||||
|
150) exit_code="SIGTTOU" ;; # 128 + 22
|
||||||
|
151) exit_code="SIGURG" ;; # 128 + 23
|
||||||
|
152) exit_code="SIGXCPU" ;; # 128 + 24
|
||||||
|
153) exit_code="SIGXFSZ" ;; # 128 + 25
|
||||||
|
154) exit_code="SIGVTALRM" ;; # 128 + 26
|
||||||
|
155) exit_code="SIGPROF" ;; # 128 + 27
|
||||||
|
156) exit_code="SIGWINCH" ;; # 128 + 28
|
||||||
|
157) exit_code="SIGIO" ;; # 128 + 29
|
||||||
|
158) exit_code="SIGPWR" ;; # 128 + 30
|
||||||
|
159) exit_code="SIGSYS" ;; # 128 + 31
|
||||||
|
esac
|
||||||
|
exit_code=" \e[1m\e[31m$exit_code\e[0m"
|
||||||
|
fi
|
||||||
|
local time=$(date +%H:%M:%S)
|
||||||
|
local dir=$PWD
|
||||||
|
[[ "$dir" =~ ^"$HOME"(/|$) ]] && dir="~${dir#$HOME}"
|
||||||
|
# TODO: virtualenv
|
||||||
|
local grey="\e[38;5;244m"
|
||||||
|
local reset="\e[0m"
|
||||||
|
local blue="\e[38;5;37m"
|
||||||
|
echo -e "$grey$time$reset $blue$dir$reset$exit_code"
|
||||||
|
}
|
||||||
|
|
||||||
|
PROMPT_COMMAND=_prompt_first_line
|
||||||
|
|
||||||
|
yellow="\001\e[38;5;3m\002"
|
||||||
|
grey="\001\e[38;5;244m\002"
|
||||||
|
reset="\001\e[0m\002"
|
||||||
|
|
||||||
|
PS1="$yellow\u$reset@$grey\h$reset "
|
||||||
5
roles/bat/tasks/Darwin.yaml
Normal file
5
roles/bat/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: bat
|
||||||
|
state: latest
|
||||||
12
roles/bat/tasks/Debian.yaml
Normal file
12
roles/bat/tasks/Debian.yaml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
- set_fact:
|
||||||
|
use_github: '{{
|
||||||
|
ansible_distribution == "Ubuntu" and
|
||||||
|
ansible_distribution_version == "18.04"
|
||||||
|
}}'
|
||||||
|
|
||||||
|
- when: use_github
|
||||||
|
include_tasks: deb.yaml
|
||||||
|
|
||||||
|
- when: not use_github
|
||||||
|
include_tasks: apt.yaml
|
||||||
6
roles/bat/tasks/RedHat.yaml
Normal file
6
roles/bat/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install yum package
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name: bat
|
||||||
|
state: latest
|
||||||
5
roles/bat/tasks/Windows.yaml
Normal file
5
roles/bat/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: Bat
|
||||||
|
state: latest
|
||||||
13
roles/bat/tasks/apt.yaml
Normal file
13
roles/bat/tasks/apt.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: bat
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: update bat alternative
|
||||||
|
become: true
|
||||||
|
alternatives:
|
||||||
|
name: bat
|
||||||
|
path: /usr/bin/batcat
|
||||||
|
link: /usr/local/bin/bat
|
||||||
65
roles/bat/tasks/deb.yaml
Normal file
65
roles/bat/tasks/deb.yaml
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
---
|
||||||
|
- name: get latest github release
|
||||||
|
uri:
|
||||||
|
url: https://api.github.com/repos/sharkdp/bat/releases/latest
|
||||||
|
register: latest
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
latest_version: '{{latest.json.tag_name[1:]}}'
|
||||||
|
bat_exe: '/usr/bin/bat'
|
||||||
|
|
||||||
|
- name: check if already installed
|
||||||
|
stat:
|
||||||
|
path: '{{bat_exe}}'
|
||||||
|
register: bat_stat
|
||||||
|
|
||||||
|
- name: get installed version
|
||||||
|
when: bat_stat.stat.exists == True
|
||||||
|
command: '{{bat_exe}} --version'
|
||||||
|
register: bat_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: bat_stat.stat.exists == True
|
||||||
|
set_fact:
|
||||||
|
installed_version:
|
||||||
|
'{{bat_version.stdout.strip() | regex_replace("^.*(\d+\.\d+\.\d+).*$", "\1")}}'
|
||||||
|
|
||||||
|
- when: ansible_machine == "x86_64"
|
||||||
|
set_fact:
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that: arch is defined
|
||||||
|
fail_msg: 'Architecture not currently supported: {{ansible_machine}}'
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
assets: '{{latest.json.assets}}'
|
||||||
|
asset_query: '[?contains(name, `bat-musl_`)] | [?contains(name, `amd64.deb`)] | [0]'
|
||||||
|
pkg_dir: '{{ansible_env.HOME}}/.local/pkg/bat'
|
||||||
|
- set_fact:
|
||||||
|
asset: '{{assets | to_json | from_json | json_query(asset_query)}}'
|
||||||
|
bat_deb: '{{pkg_dir}}/bat.deb'
|
||||||
|
|
||||||
|
- name: create directory for deb file download
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
path: '{{pkg_dir}}'
|
||||||
|
|
||||||
|
- name: download .deb file
|
||||||
|
when: installed_version is not defined or installed_version != latest_version
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.browser_download_url}}'
|
||||||
|
dest: '{{bat_deb}}'
|
||||||
|
|
||||||
|
- name: install .deb file
|
||||||
|
when: installed_version is not defined or installed_version != latest_version
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
deb: '{{bat_deb}}'
|
||||||
|
|
||||||
|
- name: remove .deb file
|
||||||
|
when: installed_version is not defined or installed_version != latest_version
|
||||||
|
file:
|
||||||
|
state: absent
|
||||||
|
path: '{{bat_deb}}'
|
||||||
|
changed_when: false
|
||||||
2
roles/bat/tasks/main.yaml
Normal file
2
roles/bat/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
5
roles/curl/tasks/Darwin.yaml
Normal file
5
roles/curl/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: curl
|
||||||
|
state: latest
|
||||||
6
roles/curl/tasks/Debian.yaml
Normal file
6
roles/curl/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: curl
|
||||||
|
state: latest
|
||||||
6
roles/curl/tasks/RedHat.yaml
Normal file
6
roles/curl/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install yum package
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name: curl
|
||||||
|
state: latest
|
||||||
5
roles/curl/tasks/Windows.yaml
Normal file
5
roles/curl/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: curl
|
||||||
|
state: latest
|
||||||
2
roles/curl/tasks/main.yaml
Normal file
2
roles/curl/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
100
roles/distrobox/files/_distrobox
Normal file
100
roles/distrobox/files/_distrobox
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
#compdef distrobox
|
||||||
|
|
||||||
|
_distrobox() {
|
||||||
|
local context curcontext="$curcontext" state line ret=1
|
||||||
|
typeset -A opt_args
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
'(-h --help)'{-h,--help}'[show help]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
'1: :->command' \
|
||||||
|
'*:: :->arguments'
|
||||||
|
|
||||||
|
case $state in;
|
||||||
|
(command)
|
||||||
|
local commands;
|
||||||
|
commands=(
|
||||||
|
'create:create the distrobox'
|
||||||
|
'enter:enter the distrobox'
|
||||||
|
'export:application and service exporting'
|
||||||
|
'list:list containers'
|
||||||
|
'rm:remove containers'
|
||||||
|
'stop:stop containers'
|
||||||
|
)
|
||||||
|
_describe -t commands 'distrobox command' commands "$@" \
|
||||||
|
&& ret=0 ;;
|
||||||
|
|
||||||
|
(arguments)
|
||||||
|
case $line[1] in
|
||||||
|
(create)
|
||||||
|
_arguments \
|
||||||
|
'(-h --help)'{-h,--help}'[show this message]' \
|
||||||
|
'(-v --verbose)'{-v,--verbose}'[show more verbosity]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
'(-i --image)'{-i,--image}'[image to use for the container]: :' \
|
||||||
|
'(-n --name)'{-n,--name}'[name for the distrobox]: :' \
|
||||||
|
'(-H --home)'{-H,--home}'[select a custom HOME directory for the container]: :' \
|
||||||
|
'*--volume[additional volumes to add to the container]: :_directories' \
|
||||||
|
'(-a --additional-flags)'{-a,--additional-flags}'[additional flags to pass to the container manager command]: :' \
|
||||||
|
'(-I --init)'{-I,--init}'[use init system (like systemd) inside the container]: :' \
|
||||||
|
'(-d --dry-run)'{-d,--dry-run}'[only print the container manager command generated]' \
|
||||||
|
&& ret=0 ;;
|
||||||
|
|
||||||
|
(enter)
|
||||||
|
_arguments -S \
|
||||||
|
'(-h --help)'{-h,--help}'[show this message]' \
|
||||||
|
'(-v --verbose)'{-v,--verbose}'[show more verbosity]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
'(-n --name)'{-n,--name}'[name for the distrobox]: :' \
|
||||||
|
'(-T --no-tty)'{-T,--no-tty}'[do not instantiate a tty]' \
|
||||||
|
'(-a --additional-flags)'{-a,--additional-flags}'[additional flags to pass to the container manager command]: :' \
|
||||||
|
'(-d --dry-run)'{-d,--dry-run}'[only print the container manager command generated]' \
|
||||||
|
'(-e --)'{-e,--}'[end arguments execute the rest as command to execute at login]:*:' \
|
||||||
|
&& ret=0 ;;
|
||||||
|
|
||||||
|
(export)
|
||||||
|
_arguments -S \
|
||||||
|
'(-h --help)'{-h,--help}'[show this message]' \
|
||||||
|
'(-v --verbose)'{-v,--verbose}'[show more verbosity]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
'(-a --app)'{-a,--app}'[name of the application to export]: :' \
|
||||||
|
'(-b --bin)'{-b,--bin}'[absolute path of the binary to export]: :' \
|
||||||
|
'(-s --service)'{-s,--service}'[name of the service to export]: :' \
|
||||||
|
'(-d --delete)'{-d,--delete}'[delete exported application or service]: :' \
|
||||||
|
'(-el --export-label)'{-el,--export-label}'[label to add to exported application name]: :' \
|
||||||
|
'(-ep --export-path)'{-ep,--export-path}'[path where to export the binary]: :' \
|
||||||
|
'(-ef --extra-flags)'{-ef,--export-flags}'[extra flags to add to the command]: :' \
|
||||||
|
'(-S --sudo)'{-S,--sudo}'[specify if the exported item should be run as sudo]' \
|
||||||
|
&& ret=0 ;;
|
||||||
|
|
||||||
|
(list)
|
||||||
|
_arguments -S \
|
||||||
|
'(-h --help)'{-h,--help}'[show this message]' \
|
||||||
|
'(-v --verbose)'{-v,--verbose}'[show more verbosity]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
&& ret=0 ;;
|
||||||
|
|
||||||
|
(rm)
|
||||||
|
_arguments -S \
|
||||||
|
'(-h --help)'{-h,--help}'[show this message]' \
|
||||||
|
'(-v --verbose)'{-v,--verbose}'[show more verbosity]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
'(-n --name)'{-n,--name}'[name for the distrobox]: :' \
|
||||||
|
'(-f --force)'{-f,--force}'[force deletion]' \
|
||||||
|
&& ret=0 ;;
|
||||||
|
|
||||||
|
(stop)
|
||||||
|
_arguments -S \
|
||||||
|
'(-h --help)'{-h,--help}'[show this message]' \
|
||||||
|
'(-v --verbose)'{-v,--verbose}'[show more verbosity]' \
|
||||||
|
'(-V --version)'{-V,--version}'[show version]' \
|
||||||
|
'(-n --name)'{-n,--name}'[name for the distrobox]: :' \
|
||||||
|
'(-Y --yes)'{-Y,--yes}'[non-interactive, stop without asking]' \
|
||||||
|
&& ret=0 ;;
|
||||||
|
esac ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
|
||||||
|
_distrobox "$@"
|
||||||
15
roles/distrobox/tasks/main.yaml
Normal file
15
roles/distrobox/tasks/main.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
when: ansible_distribution == "Debian" and
|
||||||
|
ansible_distribution_version == "unstable"
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: distrobox
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: install distrobox zsh completions
|
||||||
|
when: ansible_distribution == "Debian" and
|
||||||
|
ansible_distribution_version == "unstable"
|
||||||
|
copy:
|
||||||
|
src: _distrobox
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/zsh/site-functions/_distrobox'
|
||||||
5
roles/editline/tasks/main.yaml
Normal file
5
roles/editline/tasks/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: create .editrc config file
|
||||||
|
template:
|
||||||
|
src: editrc
|
||||||
|
dest: '{{ansible_env.HOME}}/.editrc'
|
||||||
3
roles/editline/templates/editrc
Normal file
3
roles/editline/templates/editrc
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Enable vi mode
|
||||||
|
lldb:bind -v
|
||||||
|
lldb:bind ^I lldb_complete
|
||||||
14
roles/firefox/tasks/Windows.yaml
Normal file
14
roles/firefox/tasks/Windows.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: firefox
|
||||||
|
package_params: >-
|
||||||
|
/l:en-GB
|
||||||
|
/NoDesktopShortcut
|
||||||
|
/NoAutoUpdate
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
# - TODO: create extensions directory
|
||||||
|
# file:
|
||||||
|
# path: '{{ansible_env.ProgramFiles}}/Mozilla Firefox/distribution/extensions'
|
||||||
|
# state: directory
|
||||||
2
roles/firefox/tasks/main.yaml
Normal file
2
roles/firefox/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
3
roles/fonts/handlers/main.yaml
Normal file
3
roles/fonts/handlers/main.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: refresh font cache
|
||||||
|
command: fc-cache
|
||||||
9
roles/fonts/tasks/Darwin.yaml
Normal file
9
roles/fonts/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
- name: enable homebrew tap
|
||||||
|
homebrew_tap:
|
||||||
|
name: homebrew/cask-fonts
|
||||||
|
|
||||||
|
- name: install Caskaydia Cove Nerd Font
|
||||||
|
homebrew_cask:
|
||||||
|
name: font-caskaydia-cove-nerd-font
|
||||||
|
state: latest
|
||||||
56
roles/fonts/tasks/Linux.yaml
Normal file
56
roles/fonts/tasks/Linux.yaml
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
- name: stat version file
|
||||||
|
stat:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/share/fonts/CaskaydiaCove.version'
|
||||||
|
register: version_file
|
||||||
|
|
||||||
|
- name: slurp version
|
||||||
|
when: version_file.stat.exists
|
||||||
|
slurp:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/share/fonts/CaskaydiaCove.version'
|
||||||
|
register: version_slurp
|
||||||
|
|
||||||
|
- when: version_file.stat.exists
|
||||||
|
set_fact:
|
||||||
|
version: '{{version_slurp.content | b64decode}}'
|
||||||
|
|
||||||
|
- name: get latest release
|
||||||
|
uri:
|
||||||
|
url: https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest
|
||||||
|
register: latest
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
needs_installed:
|
||||||
|
'{{ not version_file.stat.exists or version.strip() != latest.json.tag_name }}'
|
||||||
|
asset: '{{ latest.json.assets | to_json | from_json |
|
||||||
|
json_query("[?contains(name, `CascadiaCode.zip`)] | [0]") }}'
|
||||||
|
|
||||||
|
- name: create user fonts directory
|
||||||
|
when: needs_installed
|
||||||
|
file:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/share/fonts'
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: download Caskaydia Cove Nerd Font archive
|
||||||
|
when: needs_installed
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.browser_download_url}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/fonts/tmp.zip'
|
||||||
|
|
||||||
|
- name: install Caskaydia Cove Nerd Font
|
||||||
|
when: needs_installed
|
||||||
|
unarchive:
|
||||||
|
src: '{{ansible_env.HOME}}/.local/share/fonts/tmp.zip'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/fonts'
|
||||||
|
notify: refresh font cache
|
||||||
|
|
||||||
|
- name: write version file
|
||||||
|
copy:
|
||||||
|
content: '{{latest.json.tag_name}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/fonts/CaskaydiaCove.version'
|
||||||
|
|
||||||
|
- name: remove Caskaydia Cove Nerd Font archive
|
||||||
|
when: needs_installed
|
||||||
|
file:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/share/fonts/tmp.zip'
|
||||||
|
state: absent
|
||||||
5
roles/fonts/tasks/main.yaml
Normal file
5
roles/fonts/tasks/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- when: ansible_os_family == 'Darwin'
|
||||||
|
include_tasks: 'Darwin.yaml'
|
||||||
|
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
||||||
|
include_tasks: 'Linux.yaml'
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
- name: install fzf binaries
|
- name: install fzf binaries
|
||||||
command:
|
command:
|
||||||
cmd: ~/.config/zsh/fzf/install --bin
|
cmd: ~/.local/src/fzf/install --bin
|
||||||
5
roles/fzf/tasks/Darwin.yaml
Normal file
5
roles/fzf/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: fzf
|
||||||
|
state: latest
|
||||||
6
roles/fzf/tasks/Debian-apt.yaml
Normal file
6
roles/fzf/tasks/Debian-apt.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: fzf
|
||||||
|
state: latest
|
||||||
13
roles/fzf/tasks/Debian-old.yaml
Normal file
13
roles/fzf/tasks/Debian-old.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
- name: clone fzf repo
|
||||||
|
git:
|
||||||
|
repo: https://github.com/junegunn/fzf.git
|
||||||
|
dest: ~/.local/src/fzf
|
||||||
|
notify: install fzf binaries
|
||||||
|
- meta: flush_handlers
|
||||||
|
|
||||||
|
- name: create symbolic links
|
||||||
|
file:
|
||||||
|
state: link
|
||||||
|
src: ~/.local/src/fzf/bin/fzf
|
||||||
|
dest: ~/.local/bin/fzf
|
||||||
8
roles/fzf/tasks/Debian.yaml
Normal file
8
roles/fzf/tasks/Debian.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- when: ansible_distribution == 'Ubuntu' and
|
||||||
|
ansible_distribution_version is version('22.04', '<=')
|
||||||
|
include_tasks: Debian-old.yaml
|
||||||
|
|
||||||
|
- when: not (ansible_distribution == 'Ubuntu' and
|
||||||
|
ansible_distribution_version is version('22.04', '<='))
|
||||||
|
include_tasks: Debian-apt.yaml
|
||||||
6
roles/fzf/tasks/RedHat.yaml
Normal file
6
roles/fzf/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install yum package
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name: fzf
|
||||||
|
state: latest
|
||||||
5
roles/fzf/tasks/Windows.yaml
Normal file
5
roles/fzf/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: fzf
|
||||||
|
state: latest
|
||||||
2
roles/fzf/tasks/main.yaml
Normal file
2
roles/fzf/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
6
roles/gdb/RedHat.yaml
Normal file
6
roles/gdb/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: gdb
|
||||||
|
state: latest
|
||||||
6
roles/gdb/tasks/Debian.yaml
Normal file
6
roles/gdb/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: gdb
|
||||||
|
state: latest
|
||||||
11
roles/gdb/tasks/gdb-11.1-config.yaml
Normal file
11
roles/gdb/tasks/gdb-11.1-config.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- set_fact:
|
||||||
|
gdb_config_dir: '{{ansible_env.HOME}}/.config/gdb'
|
||||||
|
|
||||||
|
- name: create config directory
|
||||||
|
file:
|
||||||
|
path: '{{gdb_config_dir}}'
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
gdb_config_file: '{{gdb_config_dir}}/gdbinit'
|
||||||
34
roles/gdb/tasks/main.yaml
Normal file
34
roles/gdb/tasks/main.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
|
|
||||||
|
# gdb 11.1 introduced support for config files that respect the XDG base
|
||||||
|
# directory spec, handle the boths paths dependant on the gdb version install.
|
||||||
|
- name: get installed version
|
||||||
|
command: gdb --version
|
||||||
|
register: gdb_version_output
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
gdb_version: '{{gdb_version_output.stdout | regex_search("(\d+)\.(\d+)", "\1", "\2")}}'
|
||||||
|
- set_fact:
|
||||||
|
gdb_xdg_base_dir_check:
|
||||||
|
gdb_version[0] | int > 11 or (
|
||||||
|
gdb_version[0] | int == 11 and gdb_version[1] | int == 1
|
||||||
|
)
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
gdb_config_file: '{{ansible_env.HOME}}/.gdbinit'
|
||||||
|
gdb_state_dir: '{{ansible_env.HOME}}/.local/state/gdb'
|
||||||
|
|
||||||
|
- when: gdb_xdg_base_dir_check
|
||||||
|
include_tasks: gdb-11.1-config.yaml
|
||||||
|
|
||||||
|
- name: create config file
|
||||||
|
template:
|
||||||
|
src: gdbinit
|
||||||
|
dest: '{{gdb_config_file}}'
|
||||||
|
|
||||||
|
- name: create state directory
|
||||||
|
file:
|
||||||
|
path: '{{gdb_state_dir}}'
|
||||||
|
state: directory
|
||||||
3
roles/gdb/templates/gdbinit
Normal file
3
roles/gdb/templates/gdbinit
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Enable saving command history
|
||||||
|
set history filename {{gdb_state_dir}}/history
|
||||||
|
set history save on
|
||||||
5
roles/gh/tasks/Darwin.yaml
Normal file
5
roles/gh/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: gh
|
||||||
|
state: latest
|
||||||
37
roles/gh/tasks/Debian.yaml
Normal file
37
roles/gh/tasks/Debian.yaml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
- set_fact:
|
||||||
|
arch_map:
|
||||||
|
aarch64: arm64
|
||||||
|
armv6l: armhf
|
||||||
|
armv7l: armhf
|
||||||
|
i386: i386
|
||||||
|
x86_64: amd64
|
||||||
|
- set_fact:
|
||||||
|
arch: '{{ [ansible_architecture] | map("extract", arch_map) | first }}'
|
||||||
|
|
||||||
|
- name: download apt repository key
|
||||||
|
become: true
|
||||||
|
get_url:
|
||||||
|
url: https://cli.github.com/packages/githubcli-archive-keyring.gpg
|
||||||
|
dest: /usr/share/keyrings/githubcli-archive-keyring.gpg
|
||||||
|
mode: 0644
|
||||||
|
|
||||||
|
- name: add apt repository list
|
||||||
|
become: true
|
||||||
|
apt_repository:
|
||||||
|
filename: github-cli
|
||||||
|
repo: 'deb [arch={{arch}} signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main'
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: gh
|
||||||
|
state: latest
|
||||||
|
update_cache: true
|
||||||
|
register: gh_apt
|
||||||
|
|
||||||
|
- name: install zsh completions
|
||||||
|
when: gh_apt.changed
|
||||||
|
become: true
|
||||||
|
shell: gh completion -s zsh > /usr/local/share/zsh/site-functions/_gh
|
||||||
12
roles/gh/tasks/RedHat.yaml
Normal file
12
roles/gh/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
- name: add yum repository
|
||||||
|
become: true
|
||||||
|
get_url:
|
||||||
|
url: https://cli.github.com/packages/rpm/gh-cli.repo
|
||||||
|
dest: /etc/yum.repos.d/gh-cli.repo
|
||||||
|
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: gh
|
||||||
|
state: latest
|
||||||
5
roles/gh/tasks/Windows.yaml
Normal file
5
roles/gh/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: gh
|
||||||
|
state: latest
|
||||||
2
roles/gh/tasks/main.yaml
Normal file
2
roles/gh/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
34
roles/git/tasks/Windows-installer.yaml
Normal file
34
roles/git/tasks/Windows-installer.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
- name: get json containing all releases
|
||||||
|
win_uri:
|
||||||
|
url: 'https://api.github.com/repos/git-for-windows/git/releases/tags/v{{git_version}}.windows.1'
|
||||||
|
return_content: true
|
||||||
|
register: git_release
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
git_installer_exe: 'Git-{{git_version}}-64-bit.exe'
|
||||||
|
- set_fact:
|
||||||
|
git_asset_query: '[?contains(name, `{{git_installer_exe}}`)] | [0]'
|
||||||
|
git_installer_path: '{{ansible_env.TEMP}}/{{git_installer_exe}}'
|
||||||
|
- name: select asset from release
|
||||||
|
set_fact:
|
||||||
|
git_asset: '{{git_release.json.assets | json_query(git_asset_query)}}'
|
||||||
|
|
||||||
|
- name: download installer
|
||||||
|
win_get_url:
|
||||||
|
url: '{{git_asset.browser_download_url}}'
|
||||||
|
dest: '{{git_installer_path}}'
|
||||||
|
|
||||||
|
- name: run installer command
|
||||||
|
win_command:
|
||||||
|
argv:
|
||||||
|
- '{{git_installer_path}}'
|
||||||
|
- '/GitAndUnixToolsOnPath'
|
||||||
|
- '/NoShellIntegration'
|
||||||
|
- '/NoGuiHereIntegration'
|
||||||
|
- '/NoCredentialManager'
|
||||||
|
- '/NoOpenSSH'
|
||||||
|
- '/Silent'
|
||||||
|
- '/SuppressMsgBoxes'
|
||||||
|
- '/NoCancel'
|
||||||
|
- '/NoRestart'
|
||||||
@@ -1,9 +1,49 @@
|
|||||||
---
|
---
|
||||||
|
# Pinned to 2.36.1 because the unofficial win_git module hangs when using
|
||||||
|
# 2.37.3, this is either a breaking change in 2.37.x or an incompatibility with
|
||||||
|
# the win_git module. The git chocolatey package does not respect the version
|
||||||
|
# argument and always installs the most recent version, so instead download the
|
||||||
|
# installer from GitHub and install manually.
|
||||||
|
- set_fact:
|
||||||
|
git_version: 2.36.1
|
||||||
|
git_cli_exe: '{{ansible_env.ProgramFiles}}/Git/cmd/git.exe'
|
||||||
|
git_run_installer: false
|
||||||
|
|
||||||
|
- name: detect if Git for Windows is installed
|
||||||
|
win_stat:
|
||||||
|
path: '{{git_cli_exe}}'
|
||||||
|
register: git_cli_stat
|
||||||
|
|
||||||
|
- when: not git_cli_stat.stat.exists
|
||||||
|
set_fact:
|
||||||
|
git_run_installer: true
|
||||||
|
|
||||||
|
- name: check installed version
|
||||||
|
when: git_cli_stat.stat.exists
|
||||||
|
win_command: '"{{git_cli_exe}}" --version'
|
||||||
|
register: git_cli_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: git_cli_stat.stat.exists and git_version not in git_cli_version.stdout
|
||||||
|
set_fact:
|
||||||
|
git_run_installer: true
|
||||||
|
|
||||||
|
- include_tasks: Windows-installer.yaml
|
||||||
|
when: git_run_installer
|
||||||
|
|
||||||
- name: clone config repos
|
- name: clone config repos
|
||||||
win_git:
|
win_git:
|
||||||
repo: '{{item.repo}}'
|
repo: '{{item.repo}}'
|
||||||
dest: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
dest: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
||||||
version: master
|
version: master
|
||||||
with_items: '{{git_config_repos}}'
|
with_items: '{{git_config_repos}}'
|
||||||
|
- win_owner:
|
||||||
|
path: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
with_items: '{{git_config_repos}}'
|
||||||
|
|
||||||
# TODO: - name: install pip packages
|
# - TODO: install pip packages
|
||||||
|
# win_pip:
|
||||||
|
# name: '{{git_pip_packages}}'
|
||||||
|
# state: latest
|
||||||
|
|||||||
@@ -18,8 +18,4 @@
|
|||||||
extra_args: --user
|
extra_args: --user
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- name: create symbolic links
|
- include_tasks: ~/.config/git/tasks.yaml
|
||||||
file:
|
|
||||||
state: link
|
|
||||||
src: ~/.config/git/_git-changes
|
|
||||||
dest: ~/.local/share/zsh/site-functions/_git-changes
|
|
||||||
|
|||||||
5
roles/glab/tasks/Darwin.yaml
Normal file
5
roles/glab/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: glab
|
||||||
|
state: latest
|
||||||
67
roles/glab/tasks/Debian.yaml
Normal file
67
roles/glab/tasks/Debian.yaml
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
---
|
||||||
|
- set_fact:
|
||||||
|
glab: /usr/bin/glab
|
||||||
|
- name: stat the executable
|
||||||
|
stat:
|
||||||
|
path: '{{glab}}'
|
||||||
|
register: stat_glab
|
||||||
|
|
||||||
|
- name: get instlal version
|
||||||
|
when: stat_glab.stat.exists
|
||||||
|
command: '{{glab}} --version'
|
||||||
|
register: glab_version_output
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: stat_glab.stat.exists
|
||||||
|
set_fact:
|
||||||
|
glab_version: '{{glab_version_output.stdout | replace("glab version ", "v")}}'
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
gitlab_api: 'https://gitlab.com/api/v4'
|
||||||
|
project_id: 'gitlab-org%2Fcli'
|
||||||
|
|
||||||
|
- name: get list of gitlab releases
|
||||||
|
uri:
|
||||||
|
url:
|
||||||
|
'{{gitlab_api}}/projects/{{project_id}}/releases'
|
||||||
|
register: releases
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
latest: '{{releases.json[0]}}'
|
||||||
|
latest_version: '{{releases.json[0].tag_name}}'
|
||||||
|
query: >
|
||||||
|
[?contains(name, `glab`)] |
|
||||||
|
[?contains(name, `Linux`)] |
|
||||||
|
[?contains(name, `{{ansible_machine}}.deb`)] | [0]
|
||||||
|
- set_fact:
|
||||||
|
asset: '{{latest.assets.links|json_query(query)}}'
|
||||||
|
|
||||||
|
- name: create download directory
|
||||||
|
when: glab_version is not defined or glab_version != latest_version
|
||||||
|
tempfile:
|
||||||
|
state: directory
|
||||||
|
suffix: glab
|
||||||
|
register: tempdir
|
||||||
|
|
||||||
|
- name: download .deb file
|
||||||
|
when: glab_version is not defined or glab_version != latest_version
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.url}}'
|
||||||
|
dest: '{{tempdir.path}}/glab.deb'
|
||||||
|
|
||||||
|
- name: install .deb file
|
||||||
|
when: glab_version is not defined or glab_version != latest_version
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
deb: '{{tempdir.path}}/glab.deb'
|
||||||
|
|
||||||
|
- name: remove download directory
|
||||||
|
when: glab_version is not defined or glab_version != latest_version
|
||||||
|
file:
|
||||||
|
state: absent
|
||||||
|
path: '{{tempdir.path}}'
|
||||||
|
|
||||||
|
- name: install zsh completions
|
||||||
|
when: glab_version is not defined or glab_version != latest_version
|
||||||
|
command:
|
||||||
|
glab completion -s zsh > ~/.local/share/zsh/site-functions/_glab
|
||||||
6
roles/glab/tasks/RedHat.yaml
Normal file
6
roles/glab/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: glab
|
||||||
|
state: latest
|
||||||
5
roles/glab/tasks/Windows.yaml
Normal file
5
roles/glab/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: glab
|
||||||
|
state: latest
|
||||||
2
roles/glab/tasks/main.yaml
Normal file
2
roles/glab/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
8
roles/gnome-shell/tasks/main.yaml
Normal file
8
roles/gnome-shell/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- dconf:
|
||||||
|
# key: /org/gnome/settings-daemon/plugins/media-keys/custom-keybindings
|
||||||
|
key: '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0'
|
||||||
|
state: read
|
||||||
|
register: custom_keybindins
|
||||||
|
|
||||||
|
- debug: msg={{custom_keybindins}}
|
||||||
5
roles/htop/tasks/Darwin.yaml
Normal file
5
roles/htop/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: htop
|
||||||
|
state: latest
|
||||||
6
roles/htop/tasks/Debian.yaml
Normal file
6
roles/htop/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: htop
|
||||||
|
state: latest
|
||||||
6
roles/htop/tasks/RedHat.yaml
Normal file
6
roles/htop/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: htop
|
||||||
|
state: latest
|
||||||
2
roles/htop/tasks/main.yaml
Normal file
2
roles/htop/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
10
roles/iterm/tasks/main.yaml
Normal file
10
roles/iterm/tasks/main.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == "Darwin"
|
||||||
|
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew_cask:
|
||||||
|
name: iterm2
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
# TODO: Configure stuff, somehow?
|
||||||
41
roles/jp/tasks/Darwin.yaml
Normal file
41
roles/jp/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
---
|
||||||
|
- name: get latest github release
|
||||||
|
uri:
|
||||||
|
url: https://api.github.com/repos/jmespath/jp/releases/latest
|
||||||
|
register: latest
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
arch: '{{ [ansible_architecture] |
|
||||||
|
map("extract", { "arm64": "arm64", "x86_64": "amd64" }) | first }}'
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
asset_query: '[?contains(name, `jp-darwin-{{arch}}`)] | [0]'
|
||||||
|
assets: '{{latest.json.assets}}'
|
||||||
|
latest_version: '{{latest.json.tag_name}}'
|
||||||
|
jp_exe: '{{ansible_env.HOME}}/.local/bin/jp'
|
||||||
|
|
||||||
|
- name: check if already installed
|
||||||
|
stat:
|
||||||
|
path: '{{jp_exe}}'
|
||||||
|
register: jp_stat
|
||||||
|
|
||||||
|
- name: get installed version
|
||||||
|
when: jp_stat.stat.exists == True
|
||||||
|
command: '{{jp_exe}} --version'
|
||||||
|
register: jp_version_output
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: jp_stat.stat.exists == True
|
||||||
|
set_fact:
|
||||||
|
installed_version:
|
||||||
|
'{{jp_version_output.stdout.strip() | regex_replace("^.*(\d+\.\d+\.\d+).*$", "\1")}}'
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
asset: '{{assets | to_json | from_json | json_query(asset_query)}}'
|
||||||
|
|
||||||
|
- name: download executable
|
||||||
|
when: installed_version is not defined or installed_version != latest_version
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.browser_download_url}}'
|
||||||
|
dest: '{{jp_exe}}'
|
||||||
|
mode: +x
|
||||||
6
roles/jp/tasks/Debian.yaml
Normal file
6
roles/jp/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: jp
|
||||||
|
state: latest
|
||||||
51
roles/jp/tasks/RedHat.yaml
Normal file
51
roles/jp/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
---
|
||||||
|
- name: stat executable
|
||||||
|
stat:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/bin/jp'
|
||||||
|
register: jp_stat
|
||||||
|
|
||||||
|
- name: get installed version
|
||||||
|
when: jp_stat.stat.exists
|
||||||
|
command: jp --version
|
||||||
|
changed_when: false
|
||||||
|
register: jp_version
|
||||||
|
|
||||||
|
- name: extract installed version
|
||||||
|
when: jp_stat.stat.exists
|
||||||
|
set_fact:
|
||||||
|
jp_installed_version:
|
||||||
|
'{{jp_version.stdout.strip() | regex_replace("^.*(\d+\.\d+\.\d+).*$", "\1")}}'
|
||||||
|
|
||||||
|
- name: get latest release
|
||||||
|
uri:
|
||||||
|
url: 'https://api.github.com/repos/jmespath/jp/releases/latest'
|
||||||
|
register: latest
|
||||||
|
|
||||||
|
- name: determine if jp needs installed
|
||||||
|
set_fact:
|
||||||
|
jp_needs_installed:
|
||||||
|
'{{not jp_stat.stat.exists or jp_installed_version != latest.json.tag_name}}'
|
||||||
|
arch_dict: {x86_64: amd64, arm64: arm64}
|
||||||
|
|
||||||
|
- name: select asset name
|
||||||
|
when: jp_needs_installed
|
||||||
|
set_fact:
|
||||||
|
asset_query:
|
||||||
|
'[?contains(name, `jp-linux-{{arch_dict[ansible_architecture]}}`)] | [0]'
|
||||||
|
- name: select asset
|
||||||
|
when: jp_needs_installed
|
||||||
|
set_fact:
|
||||||
|
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
|
||||||
|
|
||||||
|
- name: create directory
|
||||||
|
when: jp_needs_installed
|
||||||
|
file:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/bin'
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: install executable
|
||||||
|
when: jp_needs_installed
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.browser_download_url}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/bin/jp'
|
||||||
|
mode: '0755'
|
||||||
4
roles/jp/tasks/main.yaml
Normal file
4
roles/jp/tasks/main.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family != "Windows"
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
5
roles/jq/tasks/Darwin.yaml
Normal file
5
roles/jq/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: jq
|
||||||
|
state: latest
|
||||||
6
roles/jq/tasks/Debian.yaml
Normal file
6
roles/jq/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: jq
|
||||||
|
state: latest
|
||||||
6
roles/jq/tasks/RedHat.yaml
Normal file
6
roles/jq/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: jq
|
||||||
|
state: latest
|
||||||
5
roles/jq/tasks/Windows.yaml
Normal file
5
roles/jq/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: jq
|
||||||
|
state: latest
|
||||||
2
roles/jq/tasks/main.yaml
Normal file
2
roles/jq/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
6
roles/kitty/tasks/Debian.yaml
Normal file
6
roles/kitty/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: kitty
|
||||||
|
state: latest
|
||||||
6
roles/kitty/tasks/RedHat.yaml
Normal file
6
roles/kitty/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: kitty
|
||||||
|
state: latest
|
||||||
7
roles/kitty/tasks/main.yaml
Normal file
7
roles/kitty/tasks/main.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
|
|
||||||
|
- name: clone config repo
|
||||||
|
git:
|
||||||
|
repo: git@code.infektor.net:config/kitty.git
|
||||||
|
dest: ~/.config/kitty
|
||||||
5
roles/llvm/tasks/Darwin.yaml
Normal file
5
roles/llvm/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: llvm
|
||||||
|
state: latest
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
---
|
---
|
||||||
- name: install Debian-unstable apt packages
|
- name: install apt packages
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- neovim
|
- clang
|
||||||
- clang-format
|
- clang-format
|
||||||
- clang-tidy
|
- clang-tidy
|
||||||
|
- clang-tools
|
||||||
- clangd
|
- clangd
|
||||||
- silversearcher-ag
|
- llvm
|
||||||
state: latest
|
state: latest
|
||||||
|
install_recommends: true
|
||||||
10
roles/llvm/tasks/Fedora.yaml
Normal file
10
roles/llvm/tasks/Fedora.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf packages
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name:
|
||||||
|
- clang
|
||||||
|
- clang-tools-extra
|
||||||
|
- git-clang-format
|
||||||
|
- llvm
|
||||||
|
state: latest
|
||||||
2
roles/llvm/tasks/Linux Mint.yaml
Normal file
2
roles/llvm/tasks/Linux Mint.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: Ubuntu.yaml
|
||||||
2
roles/llvm/tasks/Pop!_OS.yaml
Normal file
2
roles/llvm/tasks/Pop!_OS.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: Ubuntu.yaml
|
||||||
79
roles/llvm/tasks/Ubuntu.yaml
Normal file
79
roles/llvm/tasks/Ubuntu.yaml
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
---
|
||||||
|
- name: get latest stable github release
|
||||||
|
uri:
|
||||||
|
url: https://api.github.com/repos/llvm/llvm-project/releases/latest
|
||||||
|
register: llvm_latest
|
||||||
|
|
||||||
|
- name: read /etc/os-release
|
||||||
|
slurp:
|
||||||
|
src: /etc/os-release
|
||||||
|
register: os_release_b64
|
||||||
|
- name: extract UBUNTU_CODENAME=<name> to support dirivitive distros
|
||||||
|
set_fact:
|
||||||
|
ubuntu_codename: >-
|
||||||
|
{{
|
||||||
|
os_release_b64.content | b64decode |
|
||||||
|
regex_search('UBUNTU_CODENAME=.*') |
|
||||||
|
replace('UBUNTU_CODENAME=', '')
|
||||||
|
}}
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
llvm_major_version:
|
||||||
|
'{{llvm_latest.json.tag_name[8:llvm_latest.json.tag_name.find(".")]}}'
|
||||||
|
- set_fact:
|
||||||
|
llvm_apt_repo_url:
|
||||||
|
'http://apt.llvm.org/{{ubuntu_codename}}/'
|
||||||
|
llvm_apt_category:
|
||||||
|
'llvm-toolchain-{{ubuntu_codename}}-{{llvm_major_version}}'
|
||||||
|
|
||||||
|
- name: add upstream deb repository
|
||||||
|
become: true
|
||||||
|
apt_repository:
|
||||||
|
repo: 'deb {{llvm_apt_repo_url}} {{llvm_apt_category}} main'
|
||||||
|
state: present
|
||||||
|
filename: llvm
|
||||||
|
update_cache: false
|
||||||
|
|
||||||
|
- name: add upstream deb-src repository
|
||||||
|
become: true
|
||||||
|
apt_repository:
|
||||||
|
repo: 'deb-src {{llvm_apt_repo_url}} {{llvm_apt_category}} main'
|
||||||
|
state: present
|
||||||
|
filename: llvm
|
||||||
|
update_cache: false
|
||||||
|
|
||||||
|
- name: add apt repository key
|
||||||
|
become: true
|
||||||
|
apt_key:
|
||||||
|
url: https://apt.llvm.org/llvm-snapshot.gpg.key
|
||||||
|
id: 6084F3CF814B57C1CF12EFD515CF4D18AF4F7421
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: update apt cache
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
update_cache: true
|
||||||
|
|
||||||
|
- name: install apt packages
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name:
|
||||||
|
- clang-{{llvm_major_version}}
|
||||||
|
- clang-format-{{llvm_major_version}}
|
||||||
|
- clang-tidy-{{llvm_major_version}}
|
||||||
|
- clang-tools-{{llvm_major_version}}
|
||||||
|
- clangd-{{llvm_major_version}}
|
||||||
|
- llvm-{{llvm_major_version}}
|
||||||
|
state: latest
|
||||||
|
install_recommends: true
|
||||||
|
|
||||||
|
- name: update alternatives
|
||||||
|
become: true
|
||||||
|
alternatives:
|
||||||
|
link: '/usr/bin/{{item}}'
|
||||||
|
name: '{{item}}'
|
||||||
|
path: '/usr/bin/{{item}}-{{llvm_major_version}}'
|
||||||
|
priority: '{{llvm_major_version}}0'
|
||||||
|
with_items:
|
||||||
|
- clang-format
|
||||||
|
- clangd
|
||||||
5
roles/llvm/tasks/Windows.yaml
Normal file
5
roles/llvm/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: llvm
|
||||||
|
state: latest
|
||||||
5
roles/llvm/tasks/main.yaml
Normal file
5
roles/llvm/tasks/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
|
when: ansible_os_family in ['Darwin', 'Windows']
|
||||||
|
- include_tasks: '{{ansible_distribution}}.yaml'
|
||||||
|
when: ansible_os_family not in ['Darwin', 'Windows']
|
||||||
8
roles/magnet/tasks/main.yaml
Normal file
8
roles/magnet/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
|
- name: install app store package
|
||||||
|
mas:
|
||||||
|
id: 441258766
|
||||||
|
state: latest
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user