blob: fd2aa158baf47383137c04534577048cd24fae07 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
# fix for LP: 1268050
sed -i 's|^send host-name "<hostname>";|send host-name = gethostname();|g' /etc/dhcp/dhclient.conf
fi
#DEBHELPER#
|