Compare commits
56 Commits
moonlight
...
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 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1 +1,3 @@
|
|||||||
external
|
external
|
||||||
|
modules/win_git*
|
||||||
|
playbooks/test.yaml
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"yaml.schemas": {
|
|
||||||
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible.json#/$defs/playbook": [
|
|
||||||
"./*.yaml"
|
|
||||||
],
|
|
||||||
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible.json#/$defs/tasks": [
|
|
||||||
"./roles/*/handlers/*.yaml",
|
|
||||||
"./roles/*/tasks/*.yaml",
|
|
||||||
"./tasks.yaml"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
3
WSL.yaml
3
WSL.yaml
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
- import_playbook: Unix.yaml
|
|
||||||
- import_playbook: Windows.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
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
- import_playbook: Unix.yaml
|
|
||||||
|
|
||||||
- hosts: localhost
|
|
||||||
|
|
||||||
roles:
|
|
||||||
- role: obsidian
|
|
||||||
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
|
||||||
@@ -1,34 +1,32 @@
|
|||||||
---
|
---
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- role: sudo
|
- role: sudo
|
||||||
when: ansible_user_id != "root"
|
when: ansible_user_id != "root"
|
||||||
|
- role: python
|
||||||
|
|
||||||
- role: zsh
|
- role: zsh
|
||||||
- role: neovim
|
- role: neovim
|
||||||
- role: tmux
|
- role: tmux
|
||||||
- role: system-info
|
|
||||||
when: '"WSL" not in ansible_kernel'
|
|
||||||
|
|
||||||
- role: ag
|
- role: ag
|
||||||
|
- role: bash
|
||||||
- role: bat
|
- role: bat
|
||||||
- role: curl
|
- role: curl
|
||||||
|
- role: editline
|
||||||
- role: fzf
|
- role: fzf
|
||||||
|
- role: gh
|
||||||
- role: git
|
- role: git
|
||||||
|
- role: glab
|
||||||
- role: htop
|
- role: htop
|
||||||
- role: jp
|
- role: jp
|
||||||
- role: jq
|
- role: jq
|
||||||
- role: readline
|
- role: readline
|
||||||
- role: tidy
|
- role: tidy
|
||||||
- role: tree
|
- role: tree
|
||||||
|
- role: watch
|
||||||
|
- role: wget
|
||||||
- role: yq
|
- role: yq
|
||||||
|
|
||||||
- role: llvm
|
- role: llvm
|
||||||
- role: nodejs
|
- role: nodejs
|
||||||
- role: python
|
|
||||||
|
|
||||||
- role: 1password
|
|
||||||
|
|
||||||
- role: wsl
|
|
||||||
when: '"WSL" in ansible_kernel'
|
|
||||||
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
|
||||||
@@ -5,6 +5,7 @@
|
|||||||
install_cad_apps: false
|
install_cad_apps: false
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
|
- role: python
|
||||||
- role: git
|
- role: git
|
||||||
- role: powershell
|
- role: powershell
|
||||||
- role: neovim
|
- role: neovim
|
||||||
@@ -14,13 +15,13 @@
|
|||||||
- role: bat
|
- role: bat
|
||||||
- role: curl
|
- role: curl
|
||||||
- role: fzf
|
- role: fzf
|
||||||
- role: tree
|
- role: gh
|
||||||
- role: jq
|
- role: jq
|
||||||
|
- role: tree
|
||||||
- role: yq
|
- role: yq
|
||||||
|
|
||||||
- role: llvm
|
- role: llvm
|
||||||
- role: nodejs
|
- role: nodejs
|
||||||
- role: python
|
|
||||||
|
|
||||||
- role: 1password
|
- role: 1password
|
||||||
- role: autohotkey
|
- role: autohotkey
|
||||||
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,10 +1,13 @@
|
|||||||
---
|
---
|
||||||
|
- set_fact:
|
||||||
|
keyring: /etc/apt/trusted.gpg.d/1password-archive-keyring.gpg
|
||||||
|
|
||||||
- name: add apt signing key
|
- name: add apt signing key
|
||||||
when: '"WSL" not in ansible_kernel'
|
when: '"WSL" not in ansible_kernel'
|
||||||
become: true
|
become: true
|
||||||
apt_key:
|
apt_key:
|
||||||
url: https://downloads.1password.com/linux/keys/1password.asc
|
url: https://downloads.1password.com/linux/keys/1password.asc
|
||||||
keyring: /etc/apt/trusted.gpg.d/1password-archive-keyring.gpg
|
keyring: '{{keyring}}'
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- when: ansible_machine == 'x86_64'
|
- when: ansible_machine == 'x86_64'
|
||||||
@@ -20,9 +23,9 @@
|
|||||||
become: true
|
become: true
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: >-
|
repo: >-
|
||||||
deb [arch={{arch}}
|
deb [arch={{arch}} signed-by={{keyring}}]
|
||||||
signed-by=/etc/apt/trusted.gpg.d/1password-archive-keyring.gpg]
|
|
||||||
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
||||||
|
filename: 1password
|
||||||
|
|
||||||
- name: install gui package
|
- name: install gui package
|
||||||
when: '"WSL" not in ansible_kernel'
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
|||||||
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
|
||||||
@@ -4,6 +4,11 @@
|
|||||||
register: zsh_completion_script
|
register: zsh_completion_script
|
||||||
changed_when: false
|
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
|
- name: create op zsh completion file
|
||||||
copy:
|
copy:
|
||||||
content: '{{zsh_completion_script.stdout}}'
|
content: '{{zsh_completion_script.stdout}}'
|
||||||
|
|||||||
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/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 "
|
||||||
@@ -4,7 +4,6 @@
|
|||||||
ansible_distribution == "Ubuntu" and
|
ansible_distribution == "Ubuntu" and
|
||||||
ansible_distribution_version == "18.04"
|
ansible_distribution_version == "18.04"
|
||||||
}}'
|
}}'
|
||||||
- debug: msg={{use_github}}
|
|
||||||
|
|
||||||
- when: use_github
|
- when: use_github
|
||||||
include_tasks: deb.yaml
|
include_tasks: deb.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
|
||||||
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/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
|
||||||
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'
|
||||||
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
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
- name: install apt package
|
- when: ansible_distribution == 'Ubuntu' and
|
||||||
become: true
|
ansible_distribution_version is version('22.04', '<=')
|
||||||
apt:
|
include_tasks: Debian-old.yaml
|
||||||
name: fzf
|
|
||||||
state: latest
|
- 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
|
||||||
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
|
||||||
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
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: install chocolatey package
|
- name: install chocolatey package
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: moonlight-qt
|
name: gh
|
||||||
state: latest
|
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}}
|
||||||
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
|
||||||
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?
|
||||||
@@ -4,9 +4,12 @@
|
|||||||
url: https://api.github.com/repos/jmespath/jp/releases/latest
|
url: https://api.github.com/repos/jmespath/jp/releases/latest
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
# TODO: Support arm64
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
asset_query: '[?contains(name, `jp-darwin-amd64`)] | [0]'
|
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}}'
|
assets: '{{latest.json.assets}}'
|
||||||
latest_version: '{{latest.json.tag_name}}'
|
latest_version: '{{latest.json.tag_name}}'
|
||||||
jp_exe: '{{ansible_env.HOME}}/.local/bin/jp'
|
jp_exe: '{{ansible_env.HOME}}/.local/bin/jp'
|
||||||
@@ -14,7 +17,7 @@
|
|||||||
- name: check if already installed
|
- name: check if already installed
|
||||||
stat:
|
stat:
|
||||||
path: '{{jp_exe}}'
|
path: '{{jp_exe}}'
|
||||||
register: jp_exe
|
register: jp_stat
|
||||||
|
|
||||||
- name: get installed version
|
- name: get installed version
|
||||||
when: jp_stat.stat.exists == True
|
when: jp_stat.stat.exists == True
|
||||||
|
|||||||
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'
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: install apt package
|
- name: install apt package
|
||||||
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name: jq
|
name: jq
|
||||||
state: latest
|
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
|
||||||
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
|
||||||
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
|
||||||
@@ -4,14 +4,27 @@
|
|||||||
url: https://api.github.com/repos/llvm/llvm-project/releases/latest
|
url: https://api.github.com/repos/llvm/llvm-project/releases/latest
|
||||||
register: llvm_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:
|
- set_fact:
|
||||||
llvm_major_version:
|
llvm_major_version:
|
||||||
'{{llvm_latest.json.tag_name[8:llvm_latest.json.tag_name.find(".")]}}'
|
'{{llvm_latest.json.tag_name[8:llvm_latest.json.tag_name.find(".")]}}'
|
||||||
- set_fact:
|
- set_fact:
|
||||||
llvm_apt_repo_url:
|
llvm_apt_repo_url:
|
||||||
'http://apt.llvm.org/{{ansible_distribution_release}}/'
|
'http://apt.llvm.org/{{ubuntu_codename}}/'
|
||||||
llvm_apt_category:
|
llvm_apt_category:
|
||||||
'llvm-toolchain-{{ansible_distribution_release}}-{{llvm_major_version}}'
|
'llvm-toolchain-{{ubuntu_codename}}-{{llvm_major_version}}'
|
||||||
|
|
||||||
- name: add upstream deb repository
|
- name: add upstream deb repository
|
||||||
become: true
|
become: true
|
||||||
|
|||||||
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
|
||||||
8
roles/mas/tasks/main.yaml
Normal file
8
roles/mas/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew:
|
||||||
|
name: mas
|
||||||
|
state: latest
|
||||||
8
roles/microsoft-remote-desktop/tasks/main.yaml
Normal file
8
roles/microsoft-remote-desktop/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == "Darwin"
|
||||||
|
|
||||||
|
- name: install homebrew cask
|
||||||
|
homebrew_cask:
|
||||||
|
name: microsoft-remote-desktop
|
||||||
|
state: latest
|
||||||
@@ -1,7 +1,11 @@
|
|||||||
---
|
---
|
||||||
- name: install homebrew packages
|
- name: install homebrew packages
|
||||||
homebrew:
|
homebrew:
|
||||||
name: neovim
|
name:
|
||||||
|
- neovim
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
neovim_pip_packages: '{{neovim_pip_packages + ["pynvim"]}}'
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- include_tasks: Unix.yaml
|
||||||
|
|||||||
@@ -1,8 +1,18 @@
|
|||||||
---
|
---
|
||||||
|
- name: add neovim stable ppa
|
||||||
|
when: ansible_distribution == 'Ubuntu' and
|
||||||
|
ansible_distribution_version == '20.04'
|
||||||
|
become: true
|
||||||
|
apt_repository:
|
||||||
|
repo: ppa:neovim-ppa/stable
|
||||||
|
update_cache: true
|
||||||
|
|
||||||
- name: install apt package
|
- name: install apt package
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name: neovim
|
name:
|
||||||
|
- neovim
|
||||||
|
- python3-neovim
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- include_tasks: Unix.yaml
|
||||||
|
|||||||
10
roles/neovim/tasks/RedHat.yaml
Normal file
10
roles/neovim/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name:
|
||||||
|
- neovim
|
||||||
|
- python3-neovim
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- include_tasks: Unix.yaml
|
||||||
@@ -8,8 +8,6 @@
|
|||||||
dest: '{{vim_config_dir}}'
|
dest: '{{vim_config_dir}}'
|
||||||
version: master
|
version: master
|
||||||
|
|
||||||
# TODO: - name: set repo email
|
|
||||||
|
|
||||||
- name: install pip packages
|
- name: install pip packages
|
||||||
pip:
|
pip:
|
||||||
name: '{{neovim_pip_packages}}'
|
name: '{{neovim_pip_packages}}'
|
||||||
|
|||||||
@@ -3,6 +3,5 @@ neovim_pip_packages:
|
|||||||
- cmake-language-server
|
- cmake-language-server
|
||||||
- cmakelint
|
- cmakelint
|
||||||
- compdb
|
- compdb
|
||||||
- pynvim
|
|
||||||
- vim-vint
|
- vim-vint
|
||||||
- yamllint
|
- yamllint
|
||||||
|
|||||||
6
roles/nodejs/tasks/RedHat.yaml
Normal file
6
roles/nodejs/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install yum package
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name: nodejs
|
||||||
|
state: latest
|
||||||
5
roles/obsidian/handlers/main.yaml
Normal file
5
roles/obsidian/handlers/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install desktop menu
|
||||||
|
command: >
|
||||||
|
xdg-desktop-menu install --mode user
|
||||||
|
{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop
|
||||||
@@ -1,11 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: install homebrew package
|
- name: install homebrew package
|
||||||
homebrew:
|
homebrew_cask:
|
||||||
name: obsidian
|
name: obsidian
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- name: clone notes repository
|
- include_tasks: Unix.yaml
|
||||||
git:
|
|
||||||
repo: git@github.com:kbenzie/notes.git
|
|
||||||
dest: '{{ansible_env.HOME}}/Documents/Notes'
|
|
||||||
branch: main
|
|
||||||
|
|||||||
48
roles/obsidian/tasks/RedHat.yaml
Normal file
48
roles/obsidian/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
---
|
||||||
|
- name: stat symlink
|
||||||
|
stat:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
||||||
|
register: symlink_file
|
||||||
|
|
||||||
|
- name: get latest release
|
||||||
|
uri:
|
||||||
|
url: https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest
|
||||||
|
register: latest
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
appimage: 'Obsidian-{{latest.json.name}}.AppImage'
|
||||||
|
- set_fact:
|
||||||
|
filepath: '{{ansible_env.HOME}}/.local/bin/{{appimage}}'
|
||||||
|
asset_query: '[?contains(name, `{{appimage}}`)] | [0]'
|
||||||
|
- set_fact:
|
||||||
|
needs_installed:
|
||||||
|
'{{not symlink_file.stat.exists or symlink_file.stat.lnk_source != filepath}}'
|
||||||
|
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
|
||||||
|
|
||||||
|
- name: download latest version
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.browser_download_url}}'
|
||||||
|
dest: '{{filepath}}'
|
||||||
|
mode: '0755'
|
||||||
|
|
||||||
|
- name: create symlink
|
||||||
|
file:
|
||||||
|
src: '{{filepath}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
||||||
|
state: link
|
||||||
|
|
||||||
|
# TODO: icon for desktop file
|
||||||
|
|
||||||
|
- name: create desktop file
|
||||||
|
template:
|
||||||
|
src: obsidian.desktop.j2
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop'
|
||||||
|
notify: install desktop menu
|
||||||
|
|
||||||
|
- name: remove old appimage
|
||||||
|
when: needs_installed and symlink_file.stat.exists
|
||||||
|
file:
|
||||||
|
path: '{{symlink_file.stat.lnk_source}}'
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
- include_tasks: Unix.yaml
|
||||||
6
roles/obsidian/tasks/Unix.yaml
Normal file
6
roles/obsidian/tasks/Unix.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: clone notes repository
|
||||||
|
git:
|
||||||
|
repo: git@github.com:kbenzie/notes.git
|
||||||
|
dest: '{{ansible_env.HOME}}/Documents/Notes'
|
||||||
|
version: main
|
||||||
11
roles/obsidian/templates/obsidian.desktop.j2
Normal file
11
roles/obsidian/templates/obsidian.desktop.j2
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Obsidian
|
||||||
|
Exec={{ansible_env.HOME}}/.local/bin/Obsidian
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Icon=obsidian
|
||||||
|
StartupWMClass=Obsidian
|
||||||
|
X-AppImage-Version={{latest.json.name}}
|
||||||
|
Comment=Private and flexible note‑taking app that adapts to the way you think.
|
||||||
|
MimeType=x-scheme-handler/obsidian;
|
||||||
|
Categories=Utility;
|
||||||
@@ -6,3 +6,9 @@
|
|||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: prusaslicer
|
name: prusaslicer
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- name: create start menu shortcut
|
||||||
|
win_shortcut:
|
||||||
|
src: '{{ansible_env.ProgramData}}/chocolatey/bin/prusa-slicer.exe'
|
||||||
|
dest: '{{ansible_env.ProgramData}}/Microsoft/Windows/Start Menu/Programs/PrusaSlicer.lnk'
|
||||||
|
icon: '{{ansible_env.ProgramData}}/chocolatey/bin/prusa-slicer.exe,0'
|
||||||
|
|||||||
@@ -8,3 +8,4 @@
|
|||||||
- python3-pip
|
- python3-pip
|
||||||
- python3-venv
|
- python3-venv
|
||||||
- python3-virtualenv
|
- python3-virtualenv
|
||||||
|
state: latest
|
||||||
|
|||||||
9
roles/python/tasks/RedHat.yaml
Normal file
9
roles/python/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
- name: install yum packages
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name:
|
||||||
|
- python3
|
||||||
|
- python3-pip
|
||||||
|
- python3-virtualenv
|
||||||
|
state: latest
|
||||||
@@ -6,20 +6,18 @@
|
|||||||
|
|
||||||
# TODO: set repo email
|
# TODO: set repo email
|
||||||
|
|
||||||
- name: install pip packages
|
- name: create config directories
|
||||||
pip:
|
|
||||||
name: '{{python_pip_packages}}'
|
|
||||||
state: latest
|
|
||||||
extra_args: --user
|
|
||||||
|
|
||||||
- name: create directories
|
|
||||||
file:
|
file:
|
||||||
state: directory
|
state: directory
|
||||||
dest: '{{item}}'
|
path: '{{item}}'
|
||||||
with_items:
|
with_items:
|
||||||
|
- ~/.config
|
||||||
- ~/.config/ipython/profile_default
|
- ~/.config/ipython/profile_default
|
||||||
- ~/.config/pip
|
- ~/.config/pip
|
||||||
|
|
||||||
|
# Ensure that pip.conf exists before ever installing pip packages since
|
||||||
|
# Debian has enabled `EXTERNALLY-MANAGED` from PEP 668 which breaks `pip
|
||||||
|
# install --user` unless configured otherwise.
|
||||||
- name: create symbolic links
|
- name: create symbolic links
|
||||||
file:
|
file:
|
||||||
state: link
|
state: link
|
||||||
@@ -34,3 +32,17 @@
|
|||||||
dest: ~/.config/ipython/profile_default/ipython_config.py
|
dest: ~/.config/ipython/profile_default/ipython_config.py
|
||||||
- src: ~/.config/python/pip.conf
|
- src: ~/.config/python/pip.conf
|
||||||
dest: ~/.config/pip/pip.conf
|
dest: ~/.config/pip/pip.conf
|
||||||
|
|
||||||
|
- name: install pip packages
|
||||||
|
pip:
|
||||||
|
name: '{{python_pip_packages}}'
|
||||||
|
state: latest
|
||||||
|
extra_args: --user
|
||||||
|
|
||||||
|
- name: create directories
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
dest: '{{item}}'
|
||||||
|
with_items:
|
||||||
|
- ~/.config/ipython/profile_default
|
||||||
|
- ~/.config/pip
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
|
|
||||||
- include_tasks: 'unix.yaml'
|
- include_tasks: 'Unix.yaml'
|
||||||
when: ansible_os_family != "Windows"
|
when: ansible_os_family != "Windows"
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ python_pip_packages:
|
|||||||
- ipdb
|
- ipdb
|
||||||
- ipython
|
- ipython
|
||||||
- isort
|
- isort
|
||||||
|
- jmespath
|
||||||
- pylint
|
- pylint
|
||||||
- python-gist
|
- python-gist
|
||||||
- yapf
|
- yapf
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
- assert:
|
- assert:
|
||||||
that: ansible_user_id != "root"
|
that: ansible_user_id != "root"
|
||||||
|
|
||||||
|
- include_vars: '{{ansible_os_family}}.yaml'
|
||||||
|
|
||||||
- name: create /etc/sudoers.d/{user} config file
|
- name: create /etc/sudoers.d/{user} config file
|
||||||
become: true
|
become: true
|
||||||
template:
|
template:
|
||||||
src: sudoers
|
src: sudoers
|
||||||
dest: '/etc/sudoers.d/{{ansible_user_id}}'
|
dest: '/etc/sudoers.d/{{ansible_user_id}}'
|
||||||
owner: root
|
owner: '{{sudo_owner}}'
|
||||||
group: root
|
group: '{{sudo_group}}'
|
||||||
mode: '0440'
|
mode: '0440'
|
||||||
|
|||||||
3
roles/sudo/vars/Darwin.yaml
Normal file
3
roles/sudo/vars/Darwin.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
sudo_owner: root
|
||||||
|
sudo_group: wheel
|
||||||
3
roles/sudo/vars/Debian.yaml
Normal file
3
roles/sudo/vars/Debian.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
sudo_owner: root
|
||||||
|
sudo_group: root
|
||||||
3
roles/sudo/vars/RedHat.yaml
Normal file
3
roles/sudo/vars/RedHat.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
sudo_owner: root
|
||||||
|
sudo_group: wheel
|
||||||
7
roles/system-info/handlers/main.yaml
Normal file
7
roles/system-info/handlers/main.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- name: restart system-info
|
||||||
|
systemd:
|
||||||
|
name: system-info
|
||||||
|
scope: user
|
||||||
|
daemon_reload: true
|
||||||
|
state: restarted
|
||||||
@@ -3,23 +3,10 @@
|
|||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
|
- acpi
|
||||||
- gawk
|
- gawk
|
||||||
|
- lm-sensors
|
||||||
- sysstat
|
- sysstat
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- name: create systemd user unit directory
|
- include_tasks: Linux.yaml
|
||||||
file:
|
|
||||||
state: directory
|
|
||||||
dest: ~/.config/systemd/user
|
|
||||||
|
|
||||||
- name: install system-info systemd unit
|
|
||||||
copy:
|
|
||||||
src: ~/.config/tmux/system-info/system-info.service
|
|
||||||
dest: ~/.config/systemd/user/system-info.service
|
|
||||||
|
|
||||||
- name: enable system-info service
|
|
||||||
systemd:
|
|
||||||
name: system-info
|
|
||||||
scope: user
|
|
||||||
enabled: true
|
|
||||||
state: started
|
|
||||||
|
|||||||
28
roles/system-info/tasks/Linux.yaml
Normal file
28
roles/system-info/tasks/Linux.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
- name: create systemd user unit directory
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
dest: ~/.config/systemd/user
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
SYSTEM_INFO_SCRIPT_DIR: '{{ansible_env.HOME}}/.config/tmux/system-info'
|
||||||
|
|
||||||
|
- when: '"WSL" not in ansible_kernel'
|
||||||
|
set_fact:
|
||||||
|
SYSTEM_INFO_SCRIPT: '{{SYSTEM_INFO_SCRIPT_DIR}}/system-info-Linux.sh'
|
||||||
|
- when: '"WSL" in ansible_kernel'
|
||||||
|
set_fact:
|
||||||
|
SYSTEM_INFO_SCRIPT: '{{SYSTEM_INFO_SCRIPT_DIR}}/system-info-WSL.sh'
|
||||||
|
|
||||||
|
- name: install system-info systemd unit
|
||||||
|
template:
|
||||||
|
src: templates/system-info.service.j2
|
||||||
|
dest: ~/.config/systemd/user/system-info.service
|
||||||
|
notify: restart system-info
|
||||||
|
|
||||||
|
- name: enable system-info service
|
||||||
|
systemd:
|
||||||
|
name: system-info
|
||||||
|
scope: user
|
||||||
|
enabled: true
|
||||||
|
state: started
|
||||||
11
roles/system-info/tasks/RedHat.yaml
Normal file
11
roles/system-info/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf packages
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name:
|
||||||
|
- acpi
|
||||||
|
- lm_sensors
|
||||||
|
- sysstat
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- include_tasks: Linux.yaml
|
||||||
@@ -30,29 +30,29 @@
|
|||||||
start_when_available: true
|
start_when_available: true
|
||||||
wake_to_run: false
|
wake_to_run: false
|
||||||
|
|
||||||
- name: create system-info-WSL.sh scheduled task
|
# - name: create system-info-WSL.sh scheduled task
|
||||||
win_scheduled_task:
|
# win_scheduled_task:
|
||||||
path: Benie
|
# path: Benie
|
||||||
name: system-info-WSL.sh
|
# name: system-info-WSL.sh
|
||||||
state: present
|
# state: present
|
||||||
enable: true
|
# enable: true
|
||||||
triggers:
|
# triggers:
|
||||||
- type: logon
|
# - type: logon
|
||||||
enabled: true
|
# enabled: true
|
||||||
- type: registration
|
# - type: registration
|
||||||
enabled: true
|
# enabled: true
|
||||||
actions:
|
# actions:
|
||||||
- path: '{{wsl_exe}}'
|
# - path: '{{wsl_exe}}'
|
||||||
arguments: '-d Debian -e /home/benie/.config/tmux/system-info/system-info-WSL.sh'
|
# arguments: '-d Debian -e /home/benie/.config/tmux/system-info/system-info-WSL.sh'
|
||||||
disallow_start_if_on_batteries: false
|
# disallow_start_if_on_batteries: false
|
||||||
stop_if_going_on_batteries: false
|
# stop_if_going_on_batteries: false
|
||||||
execution_time_limit: PT0S
|
# execution_time_limit: PT0S
|
||||||
logon_type: password
|
# logon_type: password
|
||||||
username: '{{ansible_user}}'
|
# username: '{{ansible_user}}'
|
||||||
password: '{{ansible_password}}'
|
# password: '{{ansible_password}}'
|
||||||
multiple_instances: 3
|
# multiple_instances: 3
|
||||||
run_level: limited
|
# run_level: limited
|
||||||
start_when_available: true
|
# start_when_available: true
|
||||||
wake_to_run: false
|
# wake_to_run: false
|
||||||
|
|
||||||
# - TODO: configure firewall
|
# - TODO: configure firewall
|
||||||
|
|||||||
9
roles/system-info/templates/system-info.service.j2
Normal file
9
roles/system-info/templates/system-info.service.j2
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=System Info
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart={{SYSTEM_INFO_SCRIPT}}
|
||||||
|
Environment=LC_ALL=C.UTF-8
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
||||||
6
roles/tidy/tasks/RedHat.yaml
Normal file
6
roles/tidy/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: tidy
|
||||||
|
state: latest
|
||||||
@@ -3,6 +3,21 @@
|
|||||||
pacman:
|
pacman:
|
||||||
name:
|
name:
|
||||||
- tmux
|
- tmux
|
||||||
- xclip
|
|
||||||
- urlscan
|
- urlscan
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- name: install pacman package
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
pacman:
|
||||||
|
name: xsel
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: remove pacman package
|
||||||
|
when: '"WSL" in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
pacman:
|
||||||
|
name:
|
||||||
|
- xclip
|
||||||
|
- xsel
|
||||||
|
state: absent
|
||||||
|
|||||||
@@ -3,7 +3,34 @@
|
|||||||
homebrew:
|
homebrew:
|
||||||
name:
|
name:
|
||||||
- tmux
|
- tmux
|
||||||
- osx-cpu-temp
|
|
||||||
- reattach-to-user-namespace
|
- reattach-to-user-namespace
|
||||||
- urlview
|
- urlview
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- name: check terminal info description exists
|
||||||
|
command: /usr/bin/infocmp -x tmux-256color
|
||||||
|
changed_when: false
|
||||||
|
failed_when: false
|
||||||
|
register: terminfo_exists
|
||||||
|
|
||||||
|
- name: download latest terminfo description
|
||||||
|
when: terminfo_exists.rc == 1
|
||||||
|
get_url:
|
||||||
|
url: https://gist.githubusercontent.com/nicm/ea9cf3c93f22e0246ec858122d9abea1/raw/37ae29fc86e88b48dbc8a674478ad3e7a009f357/tmux-256color
|
||||||
|
dest: ~/tmux-256color
|
||||||
|
|
||||||
|
- name: compile terminal info
|
||||||
|
when: terminfo_exists.rc == 1
|
||||||
|
command: /usr/bin/tic -x ~/tmux-256color
|
||||||
|
|
||||||
|
- name: cleanup downloaded terminfo description
|
||||||
|
when: terminfo_exists.rc == 1
|
||||||
|
file:
|
||||||
|
path: ~/tmux-256color
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
- name: check terminal info description exists
|
||||||
|
when: terminfo_exists.rc == 1
|
||||||
|
command: /usr/bin/infocmp -x tmux-256color
|
||||||
|
changed_when: false
|
||||||
|
register: terminfo_exists
|
||||||
|
|||||||
@@ -1,12 +1,26 @@
|
|||||||
---
|
---
|
||||||
- name: install apt packages
|
- name: install apt packages
|
||||||
become: true
|
become: true
|
||||||
package:
|
apt:
|
||||||
name:
|
name:
|
||||||
- tmux
|
- tmux
|
||||||
- gawk
|
- gawk
|
||||||
- jq
|
|
||||||
- sysstat
|
- sysstat
|
||||||
- urlview
|
- urlview
|
||||||
- xclip
|
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- name: install apt package
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: xsel
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: remove apt package
|
||||||
|
when: '"WSL" in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name:
|
||||||
|
- xclip
|
||||||
|
- xsel
|
||||||
|
state: absent
|
||||||
|
|||||||
@@ -3,8 +3,22 @@
|
|||||||
dnf:
|
dnf:
|
||||||
name:
|
name:
|
||||||
- tmux
|
- tmux
|
||||||
- xclip
|
|
||||||
- urlscan
|
- urlscan
|
||||||
- sysstat
|
- sysstat
|
||||||
- jq
|
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- name: install dnf package
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: xsel
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: remove dnf package
|
||||||
|
when: '"WSL" in ansible_kernel'
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name:
|
||||||
|
- xclip
|
||||||
|
- xsel
|
||||||
|
state: absent
|
||||||
|
|||||||
10
roles/tmux/tasks/RedHat.yaml
Normal file
10
roles/tmux/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
- name: install yum packages
|
||||||
|
become: true
|
||||||
|
yum:
|
||||||
|
name:
|
||||||
|
- tmux
|
||||||
|
- sysstat
|
||||||
|
- urlview
|
||||||
|
- xsel
|
||||||
|
state: latest
|
||||||
6
roles/tree/tasks/RedHat.yaml
Normal file
6
roles/tree/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install dnf package
|
||||||
|
become: true
|
||||||
|
dnf:
|
||||||
|
name: tree
|
||||||
|
state: latest
|
||||||
8
roles/viscosity/tasks/main.yaml
Normal file
8
roles/viscosity/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == "Darwin"
|
||||||
|
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew_cask:
|
||||||
|
name: viscosity
|
||||||
|
state: latest
|
||||||
6
roles/watch/tasks/main.yaml
Normal file
6
roles/watch/tasks/main.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
when: ansible_os_family == "Darwin"
|
||||||
|
homebrew:
|
||||||
|
name: watch
|
||||||
|
state: latest
|
||||||
5
roles/webcatalog/handlers/main.yaml
Normal file
5
roles/webcatalog/handlers/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install desktop menu
|
||||||
|
command: >
|
||||||
|
xdg-desktop-menu install --mode user
|
||||||
|
{{ansible_env.HOME}}/.local/share/applications/webcatalog-webcatalog.desktop
|
||||||
5
roles/webcatalog/tasks/Darwin.yaml
Normal file
5
roles/webcatalog/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install homebrew package
|
||||||
|
homebrew_cask:
|
||||||
|
name: webcatalog
|
||||||
|
state: latest
|
||||||
49
roles/webcatalog/tasks/Linux.yaml
Normal file
49
roles/webcatalog/tasks/Linux.yaml
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
- name: stat symlink
|
||||||
|
stat:
|
||||||
|
path: '{{ansible_env.HOME}}/.local/bin/WebCatalog'
|
||||||
|
register: symlink_file
|
||||||
|
|
||||||
|
- name: get releases
|
||||||
|
uri:
|
||||||
|
url: https://raw.githubusercontent.com/kbenzie/webcatalog-release-scraper/main/webcatalog-releases.json
|
||||||
|
return_content: true
|
||||||
|
register: releases_raw
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
releases: '{{releases_raw.content | from_json}}'
|
||||||
|
- set_fact:
|
||||||
|
appimage: 'WebCatalog-{{releases[0].version}}.AppImage'
|
||||||
|
- set_fact:
|
||||||
|
filepath: '{{ansible_env.HOME}}/.local/bin/{{appimage}}'
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
needs_installed:
|
||||||
|
'{{not symlink_file.stat.exists or symlink_file.stat.lnk_source != filepath}}'
|
||||||
|
|
||||||
|
- name: download latest version
|
||||||
|
when: needs_installed
|
||||||
|
get_url:
|
||||||
|
url: 'https://cdn-2.webcatalog.io/webcatalog/{{appimage}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/bin/{{appimage}}'
|
||||||
|
mode: '0755'
|
||||||
|
|
||||||
|
- name: create symlink
|
||||||
|
file:
|
||||||
|
src: '{{filepath}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/bin/WebCatalog'
|
||||||
|
state: link
|
||||||
|
|
||||||
|
# TODO: icon for desktop file
|
||||||
|
|
||||||
|
- name: create desktop file
|
||||||
|
template:
|
||||||
|
src: webcatalog.desktop.j2
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/applications/webcatalog-webcatalog.desktop'
|
||||||
|
notify: install desktop menu
|
||||||
|
|
||||||
|
- name: remove old appimage
|
||||||
|
when: needs_installed and symlink_file.stat.exists
|
||||||
|
file:
|
||||||
|
path: '{{symlink_file.stat.lnk_source}}'
|
||||||
|
state: absent
|
||||||
7
roles/webcatalog/tasks/main.yaml
Normal file
7
roles/webcatalog/tasks/main.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- when: ansible_os_family == 'Darwin'
|
||||||
|
include_tasks: 'Darwin.yaml'
|
||||||
|
- when: ansible_os_family == 'Windows'
|
||||||
|
include_tasks: 'Windows.yaml'
|
||||||
|
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
||||||
|
include_tasks: 'Linux.yaml'
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user