diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2023-01-02 13:48:27 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2023-01-24 18:19:42 +0100 |
commit | 0322a9d024b6bf000d45a7bcd0cd5ec59fb290c7 (patch) | |
tree | 44bba294e54692b85bcc7f5d181ba58ec35bc4e0 /debian | |
parent | debian: remove bogus "iproute" dependency (diff) | |
download | frr-0322a9d024b6bf000d45a7bcd0cd5ec59fb290c7.tar.xz frr-0322a9d024b6bf000d45a7bcd0cd5ec59fb290c7.zip |
debian: fix python3 shebang in new files
Already done for existing python scripts in the install, just need to
add new .py files.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
(cherry picked from commit 03cef3900334e72b06cb9505e23338f2cfb9b9e5)
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index bed16b86a..43e5d7e61 100755 --- a/debian/rules +++ b/debian/rules @@ -76,6 +76,8 @@ override_dh_auto_install: sed -e '1c #!/usr/bin/python3' -i debian/tmp/usr/lib/frr/frr-reload.py sed -e '1c #!/usr/bin/python3' -i debian/tmp/usr/lib/frr/generate_support_bundle.py + sed -e '1c #!/usr/bin/python3' -i debian/tmp/usr/lib/frr/frr_babeltrace.py + sed -e '1c #!/usr/bin/python3' -i debian/tmp/usr/lib/frr/ospfclient.py # let dh_systemd_* and dh_installinit do their thing automatically cp build/tools/frr.service debian/frr.service |