This file is indexed.

/etc/vmbuilder/debian/interfaces.tmpl is in python-vm-builder 0.12.4+bzr494-0ubuntu1.

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
19
20
21
22
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
#if $ip == 'dhcp'
iface eth0 inet dhcp
#else
iface eth0 inet static
        address $ip
        netmask $mask 
        network $net
        broadcast $bcast
        gateway $gw 
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers $dns
        dns-search $domain
#end if