mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
Add support for alpine linux
Both Alpine Linux and Gentoo use OpenRC so we share its logic Signed-off-by: Carlo Landmeter <clandmeter@gmail.com> Signed-off-by: Richard Yao <ryao@gentoo.org> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #4386
This commit is contained in:
parent
513168abd2
commit
c53fb0113c
@ -266,6 +266,8 @@ AC_DEFUN([ZFS_AC_DEFAULT_PACKAGE], [
|
||||
VENDOR=ubuntu ;
|
||||
elif test -f /etc/debian_version ; then
|
||||
VENDOR=debian ;
|
||||
elif test -f /etc/alpine-release ; then
|
||||
VENDOR=alpine ;
|
||||
else
|
||||
VENDOR= ;
|
||||
fi
|
||||
@ -278,6 +280,7 @@ AC_DEFUN([ZFS_AC_DEFAULT_PACKAGE], [
|
||||
redhat) DEFAULT_PACKAGE=rpm ;;
|
||||
fedora) DEFAULT_PACKAGE=rpm ;;
|
||||
gentoo) DEFAULT_PACKAGE=tgz ;;
|
||||
alpine) DEFAULT_PACKAGE=tgz ;;
|
||||
arch) DEFAULT_PACKAGE=tgz ;;
|
||||
sles) DEFAULT_PACKAGE=rpm ;;
|
||||
slackware) DEFAULT_PACKAGE=tgz ;;
|
||||
@ -299,7 +302,8 @@ AC_DEFUN([ZFS_AC_DEFAULT_PACKAGE], [
|
||||
toss) DEFAULT_INIT_SCRIPT=redhat ;;
|
||||
redhat) DEFAULT_INIT_SCRIPT=redhat ;;
|
||||
fedora) DEFAULT_INIT_SCRIPT=fedora ;;
|
||||
gentoo) DEFAULT_INIT_SCRIPT=gentoo ;;
|
||||
gentoo) DEFAULT_INIT_SCRIPT=openrc ;;
|
||||
alpine) DEFAULT_INIT_SCRIPT=openrc ;;
|
||||
arch) DEFAULT_INIT_SCRIPT=lsb ;;
|
||||
sles) DEFAULT_INIT_SCRIPT=lsb ;;
|
||||
slackware) DEFAULT_INIT_SCRIPT=lsb ;;
|
||||
@ -313,6 +317,7 @@ AC_DEFUN([ZFS_AC_DEFAULT_PACKAGE], [
|
||||
|
||||
AC_MSG_CHECKING([default init config direectory])
|
||||
case "$VENDOR" in
|
||||
alpine) DEFAULT_INITCONF_DIR=/etc/conf.d ;;
|
||||
gentoo) DEFAULT_INITCONF_DIR=/etc/conf.d ;;
|
||||
toss) DEFAULT_INITCONF_DIR=/etc/sysconfig ;;
|
||||
redhat) DEFAULT_INITCONF_DIR=/etc/sysconfig ;;
|
||||
|
@ -21,7 +21,7 @@ $(init_SCRIPTS) $(initconf_SCRIPTS) $(initcommon_SCRIPTS): $(EXTRA_DIST)
|
||||
else \
|
||||
NFS_SRV=nfs; \
|
||||
fi; \
|
||||
if [ -e /etc/gentoo-release ]; then \
|
||||
if [ -e /sbin/openrc-run ]; then \
|
||||
SHELL=/sbin/runscript; \
|
||||
else \
|
||||
SHELL=/bin/sh; \
|
||||
|
@ -308,7 +308,7 @@ do_start()
|
||||
|
||||
# ----------------------------------------------------
|
||||
|
||||
if [ ! -e /etc/gentoo-release ]
|
||||
if [ ! -e /sbin/openrc-run ]
|
||||
then
|
||||
case "$1" in
|
||||
start)
|
||||
|
@ -199,7 +199,7 @@ do_stop()
|
||||
|
||||
# ----------------------------------------------------
|
||||
|
||||
if [ ! -e /etc/gentoo-release ]
|
||||
if [ ! -e /sbin/openrc-run ]
|
||||
then
|
||||
case "$1" in
|
||||
start)
|
||||
|
@ -58,7 +58,7 @@ do_stop()
|
||||
|
||||
# ----------------------------------------------------
|
||||
|
||||
if [ ! -e /etc/gentoo-release ]; then
|
||||
if [ ! -e /sbin/openrc-run ]; then
|
||||
case "$1" in
|
||||
start)
|
||||
do_start
|
||||
|
@ -98,7 +98,7 @@ do_reload()
|
||||
|
||||
# ----------------------------------------------------
|
||||
|
||||
if [ ! -e /etc/gentoo-release ]; then
|
||||
if [ ! -e /sbin/openrc-run ]; then
|
||||
case "$1" in
|
||||
start)
|
||||
do_start
|
||||
|
Loading…
Reference in New Issue
Block a user