Sync from polyfloyd infra
This commit is contained in:
parent
6c17cd62eb
commit
591cfd73af
4 changed files with 11 additions and 8 deletions
|
@ -14,7 +14,6 @@
|
|||
apt:
|
||||
name: dehydrated
|
||||
state: present
|
||||
default_release: "{{ ansible_distribution_release }}-backports"
|
||||
|
||||
- name: Install config file
|
||||
template:
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
- name: Remove variable directories
|
||||
file:
|
||||
state: absent
|
||||
path: /usr/local/bin/acmetool
|
||||
path: "{{ item }}"
|
||||
with_items:
|
||||
- /etc/letsencrypt
|
||||
- /var/letsencrypt
|
||||
|
|
|
@ -15,4 +15,4 @@
|
|||
name: linux-image-amd64
|
||||
state: latest
|
||||
default_release: "{{ ansible_facts['distribution_release'] }}-backports"
|
||||
when: ansible_facts['architecture'] == "x86_64"
|
||||
when: ansible_facts['architecture'] == "x86_64" and ansible_facts['distribution_release'] != "bookworm"
|
||||
|
|
|
@ -39,11 +39,15 @@
|
|||
lineinfile:
|
||||
path: /etc/bash.bashrc
|
||||
insertafter: EOF
|
||||
regexp: "^source /usr/share/doc/fzf/examples/{{ item }}"
|
||||
line: "source /usr/share/doc/fzf/examples/{{ item }} # Managed by Ansible"
|
||||
with_items:
|
||||
- key-bindings.bash
|
||||
- completion.bash
|
||||
regexp: "^source /usr/share/doc/fzf/examples/key-bindings.bash"
|
||||
line: "source /usr/share/doc/fzf/examples/key-bindings.bash # Managed by Ansible"
|
||||
|
||||
- name: Configure FZF for Bash (Bookworm)
|
||||
lineinfile:
|
||||
path: /etc/bash.bashrc
|
||||
insertafter: EOF
|
||||
regexp: "^source /usr/share/doc/fzf/examples/completion.bash"
|
||||
state: absent
|
||||
|
||||
- name: Shorten Grub timeout
|
||||
lineinfile:
|
||||
|
|
Loading…
Add table
Reference in a new issue