diff options
author | PÁLI Gábor János <pali.gabor@gmail.com> | 2022-03-14 17:00:21 +0100 |
---|---|---|
committer | PÁLI Gábor János <pali.gabor@gmail.com> | 2022-03-14 17:10:16 +0100 |
commit | 2d6263aef525d62c7540924bb0c38e608d47d6fa (patch) | |
tree | 8c09bfc21138c07056e18a3d5e2a02d5702b189e /guest | |
parent | af86a86fbd364ef8346112906c6a54b28fe9bd70 (diff) | |
download | freebsd-wifibox-alpine-2d6263aef525d62c7540924bb0c38e608d47d6fa.zip |
Remove unnecessary components.
- Shutdown services are not needed because their results are not
waited for the faster shutdown.
- Time synchronization implemented by `chrony` is not needed, the
guest can rely on the host's clock.
Diffstat (limited to 'guest')
-rw-r--r-- | guest/setup.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/guest/setup.sh b/guest/setup.sh index 0c543e3..9ac748b 100644 --- a/guest/setup.sh +++ b/guest/setup.sh @@ -11,7 +11,6 @@ rc-update add urandom boot rc-update add bootmisc boot rc-update add acpid default rc-update add modules boot -rc-update add chronyd default rc-update add crond default rc-update add devfs sysinit rc-update add dmesg sysinit @@ -19,9 +18,7 @@ rc-update add hostname boot rc-update add hwclock boot rc-update add hwdrivers sysinit rc-update add iptables default -rc-update add killprocs shutdown rc-update add mdev sysinit -rc-update add savecache shutdown rc-update add sysctl boot rc-update add syslog boot rc-update add udhcpd default |