svn:keywords
[bootmanager.git] / source / notify_messages.py
1 #!/usr/bin/python
2 #
3 # $Id$
4 # $URL$
5 #
6 # Copyright (c) 2003 Intel Corporation
7 # All rights reserved.
8 #
9 # Copyright (c) 2004-2006 The Trustees of Princeton University
10 # All rights reserved.
11
12 """
13 this file contains the ids of messages that we can send the contacts
14 at a site, through the BootNotifyOwners call
15 """
16
17 MSG_INSTALL_FINISHED= "installfinished"
18 MSG_INSUFFICIENT_DISK= "insufficientdisk"
19 MSG_INSUFFICIENT_MEMORY= "insufficientmemory"
20 MSG_NO_NODE_CONFIG_FILE= "noconfig"
21 MSG_AUTH_FAIL= "authfail"
22 MSG_NODE_NOT_INSTALLED= "notinstalled"
23 MSG_NODE_FILESYSTEM_CORRUPT= "filesystemcorrupted"
24 MSG_NODE_MOUNT_FAILED= "mountfailed"
25 MSG_NODE_MISSING_KERNEL= "missingkernel"
26 MSG_HOSTNAME_NOT_RESOLVE= "hostnamenotresolve"
27 MSG_NO_DETECTED_NETWORK= "nodetectednetwork"