Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-image-creator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
snf-image-creator
Commits
5a0399d8
Commit
5a0399d8
authored
12 years ago
by
Nikos Skalkotos
Browse files
Options
Downloads
Patches
Plain Diff
Add new wizard mode in snf-image-creator-dialog
Not fully implemented yet
parent
835171dc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
image_creator/dialog_main.py
+26
-8
26 additions, 8 deletions
image_creator/dialog_main.py
with
26 additions
and
8 deletions
image_creator/dialog_main.py
+
26
−
8
View file @
5a0399d8
...
...
@@ -39,6 +39,7 @@ import os
import
textwrap
import
signal
import
StringIO
import
optparse
from
image_creator
import
__version__
as
version
from
image_creator.util
import
FatalError
,
MD5
...
...
@@ -608,7 +609,8 @@ def sysprep(session):
syspreps
=
[
s
for
s
in
all_syspreps
if
s
not
in
session
[
'
exec_syspreps
'
]]
if
len
(
syspreps
)
==
0
:
d
.
msgbox
(
"
No system preparation task available to run!
"
,
title
=
"
System Preperation
"
,
width
=
MSGBOX_WIDTH
)
d
.
msgbox
(
"
No system preparation task available to run!
"
,
title
=
"
System Preperation
"
,
width
=
MSGBOX_WIDTH
)
return
while
1
:
...
...
@@ -792,19 +794,26 @@ def select_file(d, media):
return
media
def
wizard
(
session
):
pass
def
image_creator
(
d
):
basename
=
os
.
path
.
basename
(
sys
.
argv
[
0
])
usage
=
"
Usage: %s [input_media]
"
%
basename
if
len
(
sys
.
argv
)
>
2
:
sys
.
stderr
.
write
(
"
%s
\n
"
%
usage
)
return
1
usage
=
"
Usage: %prog [options] [<input_media>]
"
parser
=
optparse
.
OptionParser
(
version
=
version
,
usage
=
usage
)
options
,
args
=
parser
.
parse_args
(
sys
.
argv
[
1
:])
if
len
(
args
)
>
1
:
parser
.
error
(
"
Wrong numver of arguments
"
)
d
.
setBackgroundTitle
(
'
snf-image-creator
'
)
if
os
.
geteuid
()
!=
0
:
raise
FatalError
(
"
You must run %s as root
"
%
basename
)
media
=
select_file
(
d
,
sys
.
argv
[
1
]
if
len
(
sys
.
arg
v
)
==
2
else
None
)
media
=
select_file
(
d
,
args
[
0
]
if
len
(
arg
s
)
==
1
else
None
)
out
=
GaugeOutput
(
d
,
"
Initialization
"
,
"
Initializing...
"
)
disk
=
Disk
(
media
,
out
)
...
...
@@ -846,7 +855,16 @@ def image_creator(d):
"
image_os
"
:
image_os
,
"
metadata
"
:
metadata
}
main_menu
(
session
)
msg
=
"
Would you like to run the snf-image-creator wizard?
"
\
"
Choose <Yes> if you want to run a wizards to assists
"
\
"
you through the image creation process. Choose <No> to run
"
\
"
the program in expert mode.
"
if
d
.
yesno
(
msg
,
width
=
YESNO_WIDTH
):
main_menu
(
session
)
else
:
wizard
(
session
)
d
.
infobox
(
"
Thank you for using snf-image-creator. Bye
"
,
width
=
53
)
finally
:
disk
.
cleanup
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment