diff options
author | David Lamparter <equinox@diac24.net> | 2018-12-18 02:21:18 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-02-19 21:34:07 +0100 |
commit | 58b1c7b653bba75935106bf09a042cea35f4ee45 (patch) | |
tree | a1bdae7cab04436ab164eaf03d123e818a7d937a /debian/rules | |
parent | debian: rework autopkgtests (diff) | |
download | frr-58b1c7b653bba75935106bf09a042cea35f4ee45.tar.xz frr-58b1c7b653bba75935106bf09a042cea35f4ee45.zip |
debian: fix dropping daemons.conf
Need to apply some manual control here, so remove it from frr.install
and just do it in rules.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to '')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index b831fafe4..a546f38d7 100755 --- a/debian/rules +++ b/debian/rules @@ -80,10 +80,12 @@ endif -rm -f debian/tmp/usr/lib/frr/frr # install config files - mkdir -p debian/tmp/etc/frr/ - sed -e 's#^!log file #!log file /var/log/frr/#' -i debian/tmp/usr/share/doc/frr/examples/*sample* + mkdir -p debian/tmp/etc + cp -r tools/etc/* debian/tmp/etc/ -rm debian/tmp/etc/frr/daemons.conf + sed -e 's#^!log file #!log file /var/log/frr/#' -i debian/tmp/usr/share/doc/frr/examples/*sample* + # drop dev-only files find debian/tmp -name '*.la' -o -name '*.a' -o -name 'lib*.so' | xargs rm -f rm -rf debian/tmp/usr/include |