reflect where we should be now

This commit is contained in:
Kyle Isom 2023-05-11 19:21:55 -07:00
parent d998b1010f
commit 6374382000
4 changed files with 24 additions and 2 deletions

View File

@ -42,6 +42,7 @@
- keychain - keychain
- libarchive-tools - libarchive-tools
- lsof - lsof
- mailutils
- mg - mg
- nmap - nmap
- nvi - nvi

View File

@ -1,4 +1,4 @@
go_version: 1.20.3 go_version: 1.20.4
bazelisk_version: 1.16.0 bazelisk_version: 1.16.0
dev_embedded: False dev_embedded: False
dev_full: False dev_full: False

View File

@ -29,7 +29,7 @@
- python3-progressbar - python3-progressbar
- python3-pycryptodome - python3-pycryptodome
- sbcl - sbcl
- termshark - sqlite3
- texinfo - texinfo
- tig - tig
- tshark - tshark
@ -91,6 +91,16 @@
dest: "/home/{{ laptop_user }}/.local/bin" dest: "/home/{{ laptop_user }}/.local/bin"
creates: "/home/{{ laptop_user }}/.local/bin/buildifier" creates: "/home/{{ laptop_user }}/.local/bin/buildifier"
- name: setup bazel symlink
become: true
ansible.builtin.file:
src: "/home/{{ laptop_user }}/.local/bin/bazelisk"
dest: /usr/local/bin/bazel
state: link
owner: root
group: root
mode: '0755'
## virtualization and containerization ## virtualization and containerization
- name: ensure repository key is installed - name: ensure repository key is installed
when: dev_virt or dev_full when: dev_virt or dev_full
@ -334,3 +344,11 @@
group: root group: root
mode: 0755 mode: 0755
state: link state: link
- name: install minio CLI tool
become: true
ansible.builtin.get_url:
checksum: sha256:cd26ea353811880704efe8eb1b3335461240c1d4f7e4f3efee1b4391697662e4
dest: /usr/local/bin/mc
mode: 0755
url: https://dl.min.io/client/mc/release/linux-amd64/archive/mc.RELEASE.2023-05-04T18-10-16Z

View File

@ -1,6 +1,7 @@
- hosts: laptop - hosts: laptop
roles: roles:
- base - base
- matrix
- dotfiles - dotfiles
- server - server
- desktop - desktop
@ -16,6 +17,7 @@
- hosts: desktop - hosts: desktop
roles: roles:
- base - base
- matrix
- dotfiles - dotfiles
- server - server
- desktop - desktop
@ -43,6 +45,7 @@
- hosts: build - hosts: build
roles: roles:
- base - base
- matrix
- dotfiles - dotfiles
- development - development
- server - server