7 lines
123 B
Text
7 lines
123 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
for service in dbus haveged wpa_supplicant chronyd rfkill; do
|
||
|
rc-update -q add $service default
|
||
|
done
|
||
|
exit 0
|