The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc-ci/pull/200
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) ===
From 64dba4242acb442e148523fd84779196733b9342 Mon Sep 17 00:00:00 2001 From: Thomas Hipp <[email protected]> Date: Wed, 28 Oct 2020 21:12:26 +0100 Subject: [PATCH] images/pld: Fix networking /etc/rc.d/init.d/network is trying to use /sbin/ip which doesn't exist. The ip command is in /bin. This creates a symlink in /sbin which solves the problem. --- images/pld.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/pld.yaml b/images/pld.yaml index 6b5dd33..7a6d249 100644 --- a/images/pld.yaml +++ b/images/pld.yaml @@ -152,6 +152,8 @@ actions: # uninstall needless systemd-units rpm -q systemd-units >/dev/null && rpm -e systemd-units --nodeps --noscripts + ln -s /bin/ip /sbin/ip + # cleanup rpm -e localedb-src rm -f /var/cache/hrmib/*
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
