Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 8 #3659

Merged
merged 6 commits into from
Oct 14, 2023
Merged

Patch 8 #3659

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion roles/network/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
- libnss-mdns # 27kB download: RasPiOS (and package avahi-daemon, above) install this regardless -- client-side library -- provides name resolution via mDNS (Multicast DNS) using Zeroconf/Bonjour e.g. Avahi
- netmask # 25kB download: Handy utility -- helps determine network masks
- net-tools # 248kB download: RasPiOS installs this regardless -- @jvonau suggests possibly deleting this...unless oldtimers really want these older commands in iiab-diagnostics output?
- networkd-dispatcher # 15kB download: Dispatcher service for systemd-networkd connection status changes
- rfkill # 87kB download: RasPiOS installs this regardless -- enable & disable wireless devices
- wireless-tools # 112kB download: RasPiOS installs this regardless -- manipulate Linux Wireless Extensions
- wpasupplicant # 1188kB download: RasPiOS installs this regardless -- client library for connections to a WiFi AP
Expand Down
11 changes: 11 additions & 0 deletions roles/network/tasks/sysd-netd-debian.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# sysd-netd-debian.yml
- name: 'Install networkd-dispatcher
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- name: 'Install networkd-dispatcher
- name: Install networkd-dispatcher

package:
name:
- networkd-dispatcher # 15kB download: Dispatcher service for systemd-networkd connection status changes

- name: 'Install systemd-resolved for RasPiOS
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- name: 'Install systemd-resolved for RasPiOS
- name: Install systemd-resolved for RasPiOS 12+

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ansible (via GitHub Actions) chokes on dangling quotes:

https://github.com/jvonau/iiab/actions/runs/6490464817/job/17626277491

package:
name:
- systemd-resolved
when: is_raspbian and os_ver is version('raspbian-12', '>=')

- name: Copy the bridge script - Creates br0
template:
dest: /etc/systemd/network/IIAB-Bridge.netdev
Expand Down