Revision aa486e93

b/docs/man/snf-image-creator.rst
42 42
	dump image to FILE
43 43

  
44 44
--public
45
	register image to cyclades as public
45
	register image with cyclades as public
46 46

  
47 47
--print-sysprep
48 48
	print the enabled and disabled system preparation operations for this
b/docs/usage.rst
45 45
                         media
46 46
   --no-sysprep          don't perform any system preparation operation
47 47
   --no-shrink           don't shrink the image
48
   --public              register image to cyclades as public
48
   --public              register image with cyclades as public
49 49
   --tmpdir=DIR          create large temporary image files under DIR
50 50

  
51 51
Most input options are self-describing. If you want to save a local copy of
......
202 202

  
203 203
In the *Register* sub-menu the user can provide:
204 204

  
205
 * The credentials (authentication token) to authenticate on *~okeanos*
205
 * The credentials (authentication token) to use when authenticating
206
   to *~okeanos*
206 207
 * A *pithos+* filename for the uploaded *diskdump* image
207
 * A name for the image to be registered to *~okeanos* with, as well as the
208
   registration type (*private* or *public*)
208
 * A name for the image to use when registering it with *~okeanos*, as well as
209
   the registration type (*private* or *public*)
209 210

  
210 211
By choosing the *Extract* menu entry, the user can dump the image to the local
211 212
file system. Finally, if the user selects *Reset*, the system will ignore
b/image_creator/dialog_menu.py
195 195

  
196 196
    if "account" not in session:
197 197
        d.msgbox("You need to provide your ~okeanos credentians before you "
198
                 "can register an images to cyclades",
198
                 "can register an images with cyclades",
199 199
                 width=SMALL_WIDTH)
200 200
        return False
201 201

  
202 202
    if "pithos_uri" not in session:
203 203
        d.msgbox("You need to upload the image to pithos+ before you can "
204
                 "register it to cyclades", width=SMALL_WIDTH)
204
                 "register it with cyclades", width=SMALL_WIDTH)
205 205
        return False
206 206

  
207 207
    while 1:
b/image_creator/main.py
119 119
                      help="don't shrink any partition", action="store_false")
120 120

  
121 121
    parser.add_option("--public", dest="public", default=False,
122
                      help="register image to cyclades as public",
122
                      help="register image with cyclades as public",
123 123
                      action="store_true")
124 124

  
125 125
    parser.add_option("--tmpdir", dest="tmp", type="string", default=None,

Also available in: Unified diff