21 lines
837 B
Bash
21 lines
837 B
Bash
# ------------------------------------------------------------------------------
|
|
# Declaration specific to Devuan
|
|
# Copyright (c) 2019-2021 Geoffray Levasseur <fatalerrors@geoffray-levasseur.org>
|
|
# ------------------------------------------------------------------------------
|
|
# This file is distributed under 3-clause BSD license.
|
|
# The complete license agreement can be obtained at:
|
|
# https://opensource.org/licenses/BSD-3-Clause
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Everything declared for Debian works on Devuan...
|
|
. $MYPATH/conf/auto/debian.conf.sh
|
|
|
|
# Except init system :
|
|
# Init SystemV ou OpenRC:
|
|
export INIT_COM="$RC_SCRIPTS_PATH/%srv% %com%"
|
|
# Init Systemd:
|
|
#export INIT_COM="systemctl %comm% %srv%"
|
|
# Init Upstart (plus ou moins universel)
|
|
#export INIT_COM="service %srv% %com%"
|
|
|