X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fnotify_messages.py;h=61ab87ba8d063229d9bf546b29863f9edadf9613;hb=752736d288e356875e5a3198bf1ef1dd43ac9f34;hp=f6bfb292f230883c025cceaf26026966020cad0b;hpb=d4e6bea456b74aec211e7df9757cfd49a815f2b5;p=bootmanager.git diff --git a/source/notify_messages.py b/source/notify_messages.py index f6bfb29..61ab87b 100644 --- a/source/notify_messages.py +++ b/source/notify_messages.py @@ -1,13 +1,24 @@ +#!/usr/bin/python +# +# Copyright (c) 2003 Intel Corporation +# All rights reserved. +# +# Copyright (c) 2004-2006 The Trustees of Princeton University +# All rights reserved. + """ this file contains the ids of messages that we can send the contacts at a site, through the BootNotifyOwners call """ -MSG_INSTALL_FINISHED= "installfinished" -MSG_INSUFFICIENT_DISK= "insufficientdisk" -MSG_INSUFFICIENT_MEMORY= "insufficientmemory" -MSG_NO_NODE_CONFIG_FILE= "noconfig" -MSG_AUTH_FAIL= "authfail" -MSG_NODE_NOT_INSTALLED= "notinstalled" -MSG_HOSTNAME_NOT_RESOLVE= "hostnamenotresolve" -MSG_NO_DETECTED_NETWORK= "nodetectednetwork" +MSG_INSTALL_FINISHED = "installfinished" +MSG_INSUFFICIENT_DISK = "insufficientdisk" +MSG_INSUFFICIENT_MEMORY = "insufficientmemory" +MSG_NO_NODE_CONFIG_FILE = "noconfig" +MSG_AUTH_FAIL = "authfail" +MSG_NODE_NOT_INSTALLED = "notinstalled" +MSG_NODE_FILESYSTEM_CORRUPT = "filesystemcorrupted" +MSG_NODE_MOUNT_FAILED = "mountfailed" +MSG_NODE_MISSING_KERNEL = "missingkernel" +MSG_HOSTNAME_NOT_RESOLVE = "hostnamenotresolve" +MSG_NO_DETECTED_NETWORK = "nodetectednetwork"