15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /build
|
|
|
|
echo "##################################################### Install RC Services"
|
|
rc-update add devfs sysinit
|
|
rc-update add procfs sysinit
|
|
rc-update add sysfs sysinit
|
|
rc-update add cgroups sysinit
|
|
rc-update add fancontrol boot
|
|
rc-update add loopback boot
|
|
rc-update add hostname boot
|
|
rc-update add localmount boot
|
|
rc-update add bootstrap-cluster default
|