This file is indexed.

/etc/whereami/whereami.conf is in whereami 0.3.34-0.4.

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
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
# #
# # Sample configuration file for 'whereami' copyright Andrew McMillan, 1999
# #

# # Regardless, we always rotate the netscape preferences file.
# =any savelog -p /home/andrew/.netscape/preferences.js
# =any cat /home/andrew/.netscape/preferences.js.0 >>/home/andrew/.netscape/preferences.js 

# # By default just send mail directly across the internet
# =any MAIL_RELAY="none"
# # By default send all mail via our main mailserver, since we do TLS+SASL there
# =any MAIL_RELAY="smtp.mydomain.com"
# By default we assume that the detection configured routing
=any GATEWAY=""
# By default we assume we have an unfiltered internet connection
=any PROXY="none"
=any NTPDAEMON=/etc/init.d/ntp-server
=any NTPSERVER=ntp


## You will need to install the "resolvconf" package for these to
## work, and edit the following couple of stanzas to the right
## interface names.

## This only happens if we are not at a WLAN
#!wlan ifconfig ath0 down
#!wlan resolvconf -d ath0

## This only happens if we are not at a LAN
#!lan ifconfig eth0 down
#!lan resolvconf -d eth0


# # Catalyst
# +catalyst bind-forwarders 192.168.3.10
# +catalyst setresolver search laptop.cat-it.co.nz wgtn.cat-it.co.nz catalyst.net.nz nameserver 127.0.0.1
# +catalyst mount /plato/general
# +catalyst mount /home/andrew/plato
# =catalyst export PROXY="192.168.3.10 8080"
# =catalyst export NTPSERVER="plato"
# =catalyst export GATEWAY="192.168.3.1"


# # At home
# =home export PROXY="172.16.85.3 3128"
# =home export NTPSERVER="adorno"
# =home setresolver search localhost mcmillan.net.nz nameserver 172.16.85.2
# +home smbmount //hegel/c /hegel/c -I 172.16.85.10 -N >>/dev/null
# -home umount /hegel/* >>/dev/null

# # AmTrust in Auckland
# +amtrust bind-forwarders 192.168.5.1
# +amtrust setresolver search laptop.cat-it.co.nz akld.capit.co.nz catalyst.net.nz nameserver 127.0.0.1

# # AGP in Sydney
# +agp bind-forwarders 10.3.0.10
# +agp setresolver search laptop.cat-it.co.nz agp.com.au catalyst.net.nz nameserver 127.0.0.1

# # When we're in Sydney we want to change to the correct timezone, and
# # then change it back when we leave.
# +agp rm /etc/localtime 
# +agp ln -s /usr/share/zoneinfo/Australia/Sydney /etc/localtime
# -agp rm /etc/localtime 
# -agp ln -s /usr/share/zoneinfo/Pacific/Auckland /etc/localtime


# # TTP In Auckland
# =ttpak export MAIL_RELAY=10.2.0.59
# =ttpak export PROXY="10.2.0.1 3128"

# # First we mount the drives if we are in the docking station.  These always
# # get unmounted cleanly because we have to shut down to remove the laptop.
# =catalyst if ( grep "^docked" /var/lib/whereami/iam >/dev/null ) then
# =catalyst   mount /dev/hde1 /dos/f -t vfat
# =catalyst   mount /dev/hde2 /dock -t ext2
# =catalyst   /root/bin/bkup2dock &
# =catalyst fi

# =docked mount /dos/f; mount /dock
# =docked /root/bin/bkup2dock &

# =undocked killall dhclient 2>/dev/null;  killall dhclient3 2>/dev/null
# =undocked MAIL_RELAY=queue

# # So we can override this for any configuration
# =any setmailrelay ${MAIL_RELAY}
# =any setoops ${PROXY}

# # Set any gateway that got called for in passing
# =any [ -n "${GATEWAY}" ] && route add default gw ${GATEWAY} 2>/dev/null

# # Use any reasonable NTP server
# =undocked if /bin/false ; then
# =any ${NTPDAEMON} stop
# =any ntpdate ${NTPSERVER}
# =any ${NTPDAEMON} start
# =undocked fi

# =any /usr/local/sbin/local-firewalling start
# =any sync
# =any ( /etc/init.d/cupsys stop; sleep 10; /etc/init.d/cupsys start ) >/dev/null 2>&1 &