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