missing dhcp-client, and seems like I finally got the networkd/lldp issue fixed
This commit is contained in:
parent
a88beae0e2
commit
1bc3a07b9f
|
@ -7,8 +7,7 @@ Standards-Version: 3.9.2
|
|||
|
||||
Package: wit-hypervisor
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, frr (>= 4.0-wit), sed, tcpdump, mtr-tiny, iproute2, ifupdown, ipmitool, iptables, lldpd, strongswan, telnet, netcat, fping, curl, wget, ifstat, rsyslog, ncurses-term, net-tools, bridge-utils, vlan, gnupg
|
||||
Depends: ${misc:Depends}, frr (>= 4.0-wit), sed, tcpdump, mtr-tiny, iproute2, ifupdown, ipmitool, iptables, lldpd, strongswan, telnet, netcat, fping, curl, wget, ifstat, rsyslog, ncurses-term, net-tools, bridge-utils, vlan, gnupg, sudo, isc-dhcp-client
|
||||
Provides: ${diverted-files}
|
||||
Conflicts: ${diverted-files}
|
||||
Description: Installs basic network packages and
|
||||
configures the box as hypervisor or datanode.
|
||||
Description: configure this box as wit hypervisor/datanode
|
||||
|
|
|
@ -107,13 +107,6 @@ case "$1" in
|
|||
|
||||
## START configuring services as we need it
|
||||
|
||||
systemctl stop systemd-networkd.socket
|
||||
systemctl stop systemd-networkd.service
|
||||
systemctl stop systemd-networkd-wait-online
|
||||
systemctl disable systemd-networkd.service
|
||||
systemctl disable systemd-networkd.socket
|
||||
systemctl disable systemd-networkd-wait-online
|
||||
|
||||
systemctl enable firewall
|
||||
systemctl restart systemd-timesyncd
|
||||
systemctl restart strongswan
|
||||
|
|
|
@ -16,6 +16,12 @@ set -e
|
|||
|
||||
case "$1" in
|
||||
install|upgrade)
|
||||
systemctl stop systemd-networkd.socket
|
||||
systemctl stop systemd-networkd.service
|
||||
systemctl stop systemd-networkd-wait-online
|
||||
systemctl disable systemd-networkd.service
|
||||
systemctl disable systemd-networkd.socket
|
||||
systemctl disable systemd-networkd-wait-online
|
||||
;;
|
||||
|
||||
abort-upgrade)
|
||||
|
|
Loading…
Reference in New Issue