mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
Ticket: none Reviewed By: trivial Testing Done: installed, Alex tried for image creations. apparently with some of our packages like mstpd still using init.d for a while longer, just having the init.d/networking file causes the original complaints about loops between services. So I'm purging it completely. Also clean up the comments a bit in start-networking
20 lines
460 B
Makefile
Executable File
20 lines
460 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
#export DH_VERBOSE=1
|
|
export PYBUILD_NAME=ifupdown2
|
|
export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/ifupdown2 --install-scripts=/usr/share/ifupdown2
|
|
|
|
%:
|
|
dh $@ --with python2 --with systemd --buildsystem=pybuild
|
|
|
|
override_dh_installman:
|
|
./scripts/genmanpages.sh ./man.rst ./man
|
|
dh_installman
|
|
|
|
override_dh_systemd_start:
|
|
dh_systemd_start --name=networking --no-start
|
|
|
|
override_dh_systemd_enable:
|
|
dh_systemd_enable --name=networking
|
|
|