* Bugfix with keys not being set for site_admin due to array append error.
[nodeconfig.git] / ipod.conf.php
1 <?php
2 //
3 // /etc/ipod.conf for production nodes
4 //
5 // Mark Huang <mlhuang@cs.princeton.edu>
6 // Copyright (C) 2004-2006 The Trustees of Princeton University
7 //
8 // $Id: ipod.conf.php,v 1.1 2006/04/07 19:29:04 mlhuang Exp $
9 //
10
11 include('plc_config.php');
12
13 // Allow only the API server to send a reboot packet
14 $IP_SUBNET = gethostbyname(PLC_API_HOST);
15
16 echo <<<EOF
17 # IP range that we respond to reboot requests from
18 IP_SUBNET=$IP_SUBNET
19 IP_MASK=255.255.255.255
20
21 EOF;
22
23 ?>