You are viewing a plain text version of this content. The canonical link for it is here.
Posted to tashi-commits@incubator.apache.org by st...@apache.org on 2012/07/27 04:18:12 UTC

svn commit: r1366277 - /incubator/tashi/trunk/src/tashi/client/tashi-admin.py

Author: stroucki
Date: Fri Jul 27 04:18:11 2012
New Revision: 1366277

URL: http://svn.apache.org/viewvc?rev=1366277&view=rev
Log:
tashi-admin: add example text for sethostnotes

Modified:
    incubator/tashi/trunk/src/tashi/client/tashi-admin.py

Modified: incubator/tashi/trunk/src/tashi/client/tashi-admin.py
URL: http://svn.apache.org/viewvc/incubator/tashi/trunk/src/tashi/client/tashi-admin.py?rev=1366277&r1=1366276&r2=1366277&view=diff
==============================================================================
--- incubator/tashi/trunk/src/tashi/client/tashi-admin.py (original)
+++ incubator/tashi/trunk/src/tashi/client/tashi-admin.py Fri Jul 27 04:18:11 2012
@@ -100,7 +100,7 @@ def setHostNotes(args):
 	parser = optparse.OptionParser()
 	parser.set_usage("%s setHostNotes [options]" % scriptname)
 	parser.add_option("--host", help="Annotate this host with the note (mandatory)", action="store", type="string", dest="hostname")
-	parser.add_option("--notes", help="Annotate the host with this note (mandatory)", action="store", type="string", dest="notes")
+	parser.add_option("--notes", help="Annotate the host with this note, e.g. 'Check fan' (mandatory)", action="store", type="string", dest="notes")
 	(options, arguments) = parser.parse_args(args)
 	if options.hostname is None or options.notes is None:
 		print "A mandatory option is missing\n"