9 lines
233 B
Text
9 lines
233 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -uo pipefail
|
||
|
|
||
|
# Install and enable avahi (mDNS/DNS-SD stack)
|
||
|
# This e.g. makes a Pi easy to find on the network (just issue ssh alarm@alarm.local)
|
||
|
pacman -Syu --noconfirm --needed avahi
|
||
|
systemctl enable avahi-daemon
|