7 lines
189 B
Bash
7 lines
189 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
install -d -m 0750 -o root -g fds /run/log/network
|
|
install -d -m 0755 /run/dhcpcd /run/dhcpcd/db
|
|
chown _dhcpcd:_dhcpcd /run/dhcpcd/db
|
|
: > /run/fds/resolv.conf
|