3 Commits

Author SHA1 Message Date
b599fcc34f feat(role): Add package dhcping
For DHCP client-to-server connection debugging
2025-05-20 19:34:27 +02:00
d73c2e0273 fix(role): Move paru chroot build dir one level up 2025-04-09 03:12:05 +02:00
f018fd5bfc fix(role): Typo 2025-04-07 00:38:32 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ packages_linux_common_all_families:
- 'bc' - 'bc'
- 'btop' - 'btop'
- 'dosfstools' - 'dosfstools'
- 'dhcping'
- 'fping' - 'fping'
- 'git' - 'git'
- 'iperf3' - 'iperf3'

View File

@@ -115,7 +115,7 @@
loop_control: loop_control:
loop_var: 'pacman_opt' loop_var: 'pacman_opt'
index_var: 'i' index_var: 'i'
label: 'Set ''{{ pacman_opt.name }}'' to ''{{ pacman_opt.value }}'', this {{ pacman_opt.value }}' label: 'Set ''{{ pacman_opt.name }}'' to ''{{ pacman_opt.value }}'', this {{ pacman_opt.purpose_human_readable }}'
loop: loop:
- { name: 'CacheDir', value: '/var/cache/pacman/pkg/', exclusive: false, purpose_human_readable: 'adds an AUR-specific cache dir (since we make this one user-writable)' } - { name: 'CacheDir', value: '/var/cache/pacman/pkg/', exclusive: false, purpose_human_readable: 'adds an AUR-specific cache dir (since we make this one user-writable)' }
- { name: 'Include', value: '/etc/pacman.d/repo-local-aur.conf', exclusive: false, purpose_human_readable: 'adds our local AUR repo' } - { name: 'Include', value: '/etc/pacman.d/repo-local-aur.conf', exclusive: false, purpose_human_readable: 'adds our local AUR repo' }
@@ -132,8 +132,8 @@
index_var: 'i' index_var: 'i'
label: 'Set ''{{ paru_option.name }}'' {% if paru_option.value %}to ''{{ paru_option.value }}''{% else %}without a value{% endif %}, {{ paru_option.purpose_human_readable }}' label: 'Set ''{{ paru_option.name }}'' {% if paru_option.value %}to ''{{ paru_option.value }}''{% else %}without a value{% endif %}, {{ paru_option.purpose_human_readable }}'
loop: loop:
- { name: 'LocalRepo', value: '', allow_no_value: true, purpose_human_readable: 'this builds AUR packages into the local repo(s) specified in ''/etc/pacman.conf''' } - { name: 'LocalRepo', value: '', allow_no_value: true, purpose_human_readable: 'this builds AUR packages into the local repo(s) specified in ''/etc/pacman.conf''' }
- { name: 'Chroot', value: '/var/cache/paru/chroot/root', allow_no_value: false, purpose_human_readable: 'this builds AUR packages in a clean chroot' } - { name: 'Chroot', value: '/var/cache/paru/chroot', allow_no_value: false, purpose_human_readable: 'this builds AUR packages in a clean chroot' }
community.general.ini_file: community.general.ini_file:
path: '/etc/paru.conf' path: '/etc/paru.conf'
section: 'options' section: 'options'