mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
6 lines
169 B
Bash
6 lines
169 B
Bash
#!/bin/sh
|
|
INIT=syslog
|
|
RUNLEVEL=`rc-update show | grep $INIT | awk '{ print $3 }'`
|
|
rc-update del $INIT $RUNLEVEL &>/dev/null
|
|
rc-update add sysklogd $RUNLEVEL &>/dev/null
|