Skip to content
Snippets Groups Projects
Verified Commit aeced046 authored by Tomas Krizek's avatar Tomas Krizek
Browse files

distro/deb: save systemd socket conf before http module uninstall

parent aa406298
Branches
Tags
1 merge request!927upgrade script for 5.0
#!/bin/sh
set -e
# upgrade-4-to-5
if [ -f /lib/systemd/system/kresd-doh.socket ] ; then
export UPG_DIR=/var/lib/knot-resolver/.upgrade-4-to-5
mkdir -p ${UPG_DIR}
touch ${UPG_DIR}/.unfinished
for sock in kresd-webmgmt.socket kresd-doh.socket ; do
if systemctl is-enabled ${sock} 2>/dev/null | grep -qv masked ; then
systemctl show ${sock} -p Listen > ${UPG_DIR}/${sock}
case "$(systemctl show ${sock} -p BindIPv6Only)" in
*ipv6-only)
touch ${UPG_DIR}/${sock}.v6only
;;
*default)
if cat /proc/sys/net/ipv6/bindv6only | grep -q 1 ; then
touch ${UPG_DIR}/${sock}.v6only
fi
;;
esac
fi
done
fi
......@@ -7,7 +7,7 @@ if [ -f /lib/systemd/system/kresd.socket ] ; then
mkdir -p ${UPG_DIR}
touch ${UPG_DIR}/.unfinished
for sock in kresd.socket kresd-tls.socket kresd-webmgmt.socket kresd-doh.socket ; do
for sock in kresd.socket kresd-tls.socket ; do
if systemctl is-enabled ${sock} 2>/dev/null | grep -qv masked ; then
systemctl show ${sock} -p Listen > ${UPG_DIR}/${sock}
case "$(systemctl show ${sock} -p BindIPv6Only)" in
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment