Package haizea :: Package common :: Module defaults
[hide private]
[frames] | no frames]

Source Code for Module haizea.common.defaults

 1  import os.path 
 2   
 3   
 4  CONFIG_LOCATIONS = ["/etc/haizea.conf", 
 5                              os.path.expanduser("~/.haizea/haizea.conf")] 
 6   
 7  PERSISTENCE_LOCATION = "~/.haizea/leases.dat" 
 8   
 9  DAEMON_PIDFILE = "/var/tmp/haizea.pid" 
10   
11  RPC_SERVER = "localhost" 
12  RPC_PORT = 42493 
13  RPC_URI = "http://%s:%i" % (RPC_SERVER, RPC_PORT) 
14   
15  OPENNEBULA_RPC_PORT = 2633 
16