mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
9 lines
170 B
Bash
9 lines
170 B
Bash
#!/bin/sh
|
|
|
|
# script renamed. Try save users settings if needed
|
|
|
|
if [ -f /etc/conf.d/dhcp ] && [ ! -f /etc/conf.d/dhcpd ]; then
|
|
mv /etc/conf.d/dhcp /etc/conf.d/dhcpd
|
|
fi
|
|
|