mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-05 22:02:22 +02:00
14 lines
455 B
Bash
14 lines
455 B
Bash
#!/bin/sh
|
|
|
|
# tiny-cloud-early needs to be in default, not sysinit or boot
|
|
if [ -L /etc/runlevels/{sysinit,boot}/tiny-cloud-early ]; then
|
|
rm /etc/runlevels/{sysinit,boot}/tiny-cloud-early
|
|
ln -sf /etc/init.d/tiny-cloud-early /etc/runlevels/default
|
|
fi
|
|
|
|
# tiny-cloud-net only existed during 3.0.0-rc
|
|
if [ -L /etc/runlevels/default/tiny-cloud-net ]; then
|
|
rm /etc/runlevels/default/tiny-cloud-net ]
|
|
ln -sf /etc/init.d/tiny-cloud-boot /etc/runlevels/boot
|
|
fi
|