fix(guix-pull): create /etc/services before daemon startup

This commit is contained in:
vxtls 2026-03-12 10:50:29 -04:00
parent fc1cf31f77
commit f786342a87
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/bin/sh
# SPDX-License-Identifier: GPL-3.0-or-later
set -e
mkdir -p /etc
cat > /etc/services <<'EOF'
http 80/tcp
http 80/udp
https 443/tcp
https 443/udp
EOF