Bug#1023822: orphan-sysvinit-scripts: firewalld sysvinit script is missing from firewalld package, can it be added?
Craig
ncwrc at hotmail.com
Thu Nov 10 15:08:20 GMT 2022
Package: orphan-sysvinit-scripts
Version: orphan-sysvinit-scripts_0.07_all , orphan-sysvinit-scripts_0.11_all
Severity: important
X-Debbugs-Cc: ncwrc at hotmail.com
Dear Maintainer,
*** Reporter, please consider answering these questions, where appropriate ***
* What led up to the situation?
I installed firewalld with "apt install firewalld" and it did not start with
"service firewalld start". It reported as not found.
* What exactly did you do (or not do) that was effective (or
ineffective)?
I did a web search yesterday and I found a working version of a firewalld
sysvinit start script inside an ubuntu package for version 20.04 LTS. The link
is here ( https://ubuntu.pkgs.org/20.04/ubuntu-universe-
arm64/firewalld_0.8.2-1_all.deb.html ) and a copy and paste of the script is
below:
### Begin quote #####
#! /bin/sh
### BEGIN INIT INFO
# Provides: firewalld
# Required-Start: $remote_fs dbus
# Required-Stop: $remote_fs dbus
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: dynamic firewall daemon
# Description: firewalld is a dynamically managed firewall daemon
# with support for network/firewall zones to define
# the trust level of network connections or interfaces.
# It provides a D-Bus interface for services or
# applications to add and apply firewall rules on-the-fly.
### END INIT INFO
#
# Author: Michael Biebl <biebl at debian.org>
#
# PATH should only include /usr/* if it runs after the mountnfs.sh script
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="dynamic firewall daemon"
NAME=firewalld
DAEMON=/usr/sbin/firewalld
PIDFILE=/var/run/firewalld.pid
SCRIPTNAME=/etc/init.d/$NAME
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 0
# Define LSB log_* functions.
. /lib/lsb/init-functions
do_start()
{
# Return
# 0 if daemon has been started
# 1 if daemon was already running
# other if daemon could not be started or a failure occured
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON
}
do_stop()
{
# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# other if daemon could not be stopped or a failure occurred
start-stop-daemon --stop --quiet --retry 5 --pidfile $PIDFILE --name
$NAME
}
do_reload()
{
start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE --name
$NAME
}
case "$1" in
start)
log_daemon_msg "Starting $DESC" "$NAME"
do_start
case "$?" in
0) log_end_msg 0 ;;
1) log_progress_msg "already started"
log_end_msg 0 ;;
*) log_end_msg 1 ;;
esac
;;
stop)
log_daemon_msg "Stopping $DESC" "$NAME"
do_stop
case "$?" in
0) log_end_msg 0 ;;
1) log_progress_msg "already stopped"
log_end_msg 0 ;;
*) log_end_msg 1 ;;
esac
;;
reload|force-reload)
log_daemon_msg "Reloading $DESC" "$NAME"
do_reload
log_end_msg $?
;;
restart)
$0 stop
$0 start
;;
status)
status_of_proc -p $PIDFILE $DAEMON $NAME && exit 0 || exit $?
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|force-
reload|reload|status}" >&2
exit 3
;;
esac
:
### /End quote #####
* What was the outcome of this action?
I placed this script into the correct location at /etc/init.d/firewalld , made
it executable, updated the rc.d defaults, and started using it with:
service firewalld status/start/stop/restart/reload
* What outcome did you expect?
It has worked fine. I made no changes at all to this script. It just worked.
*** End of the template - remove these template lines ***
Can this script be included in the "orphan-sysvinit-scripts" package? It seems
to be orphaned now... (-;
-- System Information:
Debian Release: bookworm/sid
merged-usr: no
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 6.0.0-3-amd64 (SMP w/8 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
Versions of packages orphan-sysvinit-scripts depends on:
ii ucf 3.0043
orphan-sysvinit-scripts recommends no packages.
orphan-sysvinit-scripts suggests no packages.
More information about the Debian-init-diversity
mailing list