/etc/init/networking.conf is in ifupdown 0.7~beta2ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # networking - configure virtual network devices
#
# This task causes virtual network devices that do not have an associated
# kernel object to be started on boot.
description "configure virtual network devices"
emits static-network-up
emits net-device-up
start on (local-filesystems
and (stopped udevtrigger or container))
task
pre-start exec mkdir -p /run/network
exec ifup -a
|