Compare commits

...

2 Commits

Author SHA1 Message Date
Oliver Smith eeb8331f2f Release 2.4.8-nmu3-sysmocom
* open5gs-upf.postinst: don't try to restart systemd-networkd in chroot
2022-07-04 15:19:15 +02:00
Oliver Smith 71fe2a24a6 d/changelog: don't restart service in chroot
Don't attempt to restart systemd-networkd if systemd is not running
(e.g. installing open5gs inside a chroot).

Fix for:
  System has not been booted with systemd as init system (PID 1). Can't operate.
  Failed to connect to bus: Host is down
  dpkg: error processing package open5gs-upf:amd64 (--configure):
   installed open5gs-upf:amd64 package post-installation script subprocess returned error exit status 1
2022-07-04 15:16:54 +02:00
2 changed files with 9 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
open5gs (2.4.8+nmu3~sysmocom) unstable; urgency=medium
* open5gs-upf.postinst: don't try to restart systemd-networkd in chroot
-- Oliver Smith <osmith@sysmocom.de> Mon, 04 Jul 2022 15:14:42 +0200
open5gs (2.4.8+nmu2~sysmocom) unstable; urgency=medium
* Remove mongodb dependency for pcrf

View File

@ -27,7 +27,9 @@ case "$1" in
if test "x`systemctl is-enabled systemd-networkd`" = xdisabled; then
systemctl enable systemd-networkd
fi
deb-systemd-invoke restart systemd-networkd
if test -d "/run/systemd"; then
deb-systemd-invoke restart systemd-networkd
fi
if test -f /etc/sysctl.d/30-open5gs.conf && grep "ogstun" /proc/net/dev > /dev/null; then
echo "net.ipv6.conf.ogstun.disable_ipv6=0" > /etc/sysctl.d/30-open5gs.conf
sysctl -p /etc/sysctl.d/30-open5gs.conf