Fixes and Enhancements (#24)
* Add TODO. * Add note. * Fix hang from NFS sometimes not being up. * Remove noauto so that `mount -a` works. * Allow Arch to use BASH. * Add programs needed for playbook but missing from Arch Base. * Explicit rename of old install since Github connection is unreliable. Call executable from current directory after chdir. * Ensure shells are set up correctly on Arch. * Begin explicitly using microcode packages on dev machines. * Fix _ typos to -. * Add Delta Chat. * Fix equals typo and allow command to fail. * Delta Chat Desktop works great, add it to Favorites. * Add Element. * Add Element. * Change spot for Element. * Add new file(s) to call in-development project. * Remove extra comma. * Change FreeBSD update checker to weekly. * Use Github again for pulling updates.
This commit is contained in:
@ -14,6 +14,8 @@
|
||||
locate: locate
|
||||
opensshd: openssh-server
|
||||
tar: tar
|
||||
microcode_amd: amd64-microcode
|
||||
microcode_intel: intel-microcode
|
||||
when: ansible_pkg_mgr == "apt"
|
||||
|
||||
- name: General | Facts | Package | pacman
|
||||
@ -22,6 +24,8 @@
|
||||
locate: mlocate
|
||||
opensshd: openssh
|
||||
tar: tar
|
||||
microcode_amd: linux-firmware
|
||||
microcode_intel: intel-ucode
|
||||
when: ansible_pkg_mgr == "pacman"
|
||||
|
||||
- name: General | Facts | Package | FreeBSD
|
||||
@ -31,6 +35,8 @@
|
||||
opensshd: htop # sshd comes installed on FreeBSD
|
||||
ansible_python_interpreter: "/usr/local/bin/python3.8"
|
||||
tar: htop # tar already provided in FreeBSD
|
||||
microcode_amd: htop # TODO
|
||||
microcode_intel: htop # TODO
|
||||
when: ansible_system == "FreeBSD"
|
||||
|
||||
- name: General | Facts | Package | dnf
|
||||
@ -39,6 +45,8 @@
|
||||
locate: mlocate
|
||||
opensshd: openssh
|
||||
tar: tar
|
||||
microcode_amd: microcode_ctl
|
||||
microcode_intel: microcode_ctl
|
||||
when: ansible_pkg_mgr == "dnf"
|
||||
|
||||
|
||||
|
@ -11,11 +11,15 @@
|
||||
global_bin: /usr/local/bin
|
||||
x_desktops: /usr/share/xsessions
|
||||
repo_github: https://github.com/Hyperling/ansible.git
|
||||
repo_local: https://git.hyperling.com/ansible.git
|
||||
#repo_local: https://git.hyperling.com/ansible.git
|
||||
# Local server not working yet, go back to Github even though they throttle me.
|
||||
repo_local: https://github.com/Hyperling/ansible.git
|
||||
|
||||
- name: General | Facts | System | Dev
|
||||
set_fact:
|
||||
repo_local: https://git.hyperling.com/ansible-dev.git
|
||||
#repo_local: https://git.hyperling.com/ansible-dev.git
|
||||
# Local server not working yet, go back to Github even though they throttle me.
|
||||
repo_local: https://github.com/Hyperling/ansible.git
|
||||
when: branch == "dev"
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user