diff options
Diffstat (limited to 'alpine/rc.sh')
| -rwxr-xr-x | alpine/rc.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/alpine/rc.sh b/alpine/rc.sh new file mode 100755 index 0000000..0253f3b --- /dev/null +++ b/alpine/rc.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2025-2026 Maria Lisina +# SPDX-License-Identifier: Apache-2.0 +# +# Alpine Linux OpenRC setup script, supposed to be ran in chroot + +rc-update add acpid default +rc-update add bootmisc boot +rc-update add crond default +rc-update add devfs sysinit +rc-update add dmesg sysinit +rc-update add hostname boot +rc-update add hwclock boot +rc-update add hwdrivers sysinit +rc-update add killprocs shutdown +rc-update add mdev sysinit +rc-update add modules boot +rc-update add mount-ro shutdown +rc-update add networking boot +rc-update add savecache shutdown +rc-update add seedrng boot +rc-update add swap boot + +rc-update add sshd |
