+ md5sum $statedir/isc-dhcp-v4-$interface.conf $statedir/isc-dhcp-v6-$interface.conf &> $oldstate
"&>" is a bashism. /sbin/dhclient-script uses /bin/sh as its interpreter. This does not work as intended.
$ dash $ echo foo &> output foo $ cat output [1] + Done echo foo $ ^D $
+ md5sum $statedir/ isc-dhcp- v4-$interface. conf $statedir/ isc-dhcp- v6-$interface. conf &> $oldstate
"&>" is a bashism. /sbin/dhclient- script uses /bin/sh as its interpreter. This does not work as intended.
$ dash
$ echo foo &> output
foo
$ cat output
[1] + Done echo foo
$ ^D
$