Source: ppp
Version: 2.4.7-1+4
Severity: minor
Tags: patch
Hi,
ppp-udeb currently installs an interfaces(5) file which doesn't contain a line
to source
files in the /etc/network/interfaces.d/ directory, unlike other network
connection types
in the installer. Moreover, the interfaces(5) manual page says:
By default, on a freshly installed Debian system, the interfaces file
includes
a line to source files in the /etc/network/interfaces.d directory.
The attached patch adds the missing line.
--
Алексей ШилинFrom 4814c4f01f880730fac6bf9569edc0cf5dec634f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=A8=D0=B8?=
=?UTF-8?q?=D0=BB=D0=B8=D0=BD?= <[email protected]>
Date: Sat, 3 Feb 2018 15:42:05 +0300
Subject: [PATCH] Include configuration stanzas from interfaces.d/ directory
---
debian/ppp-udeb.postinst | 2 ++
1 file changed, 2 insertions(+)
diff --git a/debian/ppp-udeb.postinst b/debian/ppp-udeb.postinst
index 11984a2..ad6912b 100644
--- a/debian/ppp-udeb.postinst
+++ b/debian/ppp-udeb.postinst
@@ -197,6 +197,8 @@ cat > /etc/network/interfaces <<EOF
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
+source /etc/network/interfaces.d/*
+
# The loopback network interface
auto lo
iface lo inet loopback
--
2.11.0