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
de99af00
Commit
de99af00
authored
11 years ago
by
Nikos Skalkotos
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into debian-precise
parents
fceae889
a8943421
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
ChangeLog
+3
-0
3 additions, 0 deletions
ChangeLog
docs/conf.py
+2
-2
2 additions, 2 deletions
docs/conf.py
image_creator/dialog_menu.py
+4
-0
4 additions, 0 deletions
image_creator/dialog_menu.py
image_creator/version.py
+4
-4
4 additions, 4 deletions
image_creator/version.py
version
+1
-1
1 addition, 1 deletion
version
with
14 additions
and
7 deletions
ChangeLog
+
3
−
0
View file @
de99af00
2013-07-17, v0.4.2
* Fix a dialog bug affecting only OpenSUSE
2013-06-21, v0.4.1
* Fix a bug that caused an abnormal termination when trying to
determine the available users in a Windows image
...
...
This diff is collapsed.
Click to expand it.
docs/conf.py
+
2
−
2
View file @
de99af00
...
...
@@ -50,9 +50,9 @@ copyright = u'2012, 2013 GRNET S.A. All rights reserved'
# built documents.
#
# The short X.Y version.
version
=
'
0.4.
1
'
version
=
'
0.4.
2
'
# The full version, including alpha/beta/rc tags.
release
=
'
0.4.
1
'
release
=
'
0.4.
2
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
This diff is collapsed.
Click to expand it.
image_creator/dialog_menu.py
+
4
−
0
View file @
de99af00
...
...
@@ -326,6 +326,7 @@ def delete_clouds(session):
(
code
,
to_delete
)
=
d
.
checklist
(
"
Choose which cloud accounts to delete:
"
,
choices
=
choices
,
width
=
WIDTH
)
to_delete
=
map
(
lambda
x
:
x
.
strip
(
'"'
),
to_delete
)
# Needed for OpenSUSE
if
code
in
(
d
.
DIALOG_CANCEL
,
d
.
DIALOG_ESC
):
return
False
...
...
@@ -537,6 +538,7 @@ def delete_properties(session):
(
code
,
to_delete
)
=
d
.
checklist
(
"
Choose which properties to delete:
"
,
choices
=
choices
,
width
=
WIDTH
)
to_delete
=
map
(
lambda
x
:
x
.
strip
(
'"'
),
to_delete
)
# needed for OpenSUSE
# If the user exits with ESC or CANCEL, the returned tag list is empty.
for
i
in
to_delete
:
...
...
@@ -586,6 +588,7 @@ def exclude_tasks(session):
choices
=
choices
,
height
=
19
,
list_height
=
8
,
width
=
WIDTH
,
help_button
=
1
,
extra_button
=
1
,
extra_label
=
"
No Config
"
,
title
=
"
Exclude Configuration Tasks
"
)
tags
=
map
(
lambda
x
:
x
.
strip
(
'"'
),
tags
)
# Needed for OpenSUSE
if
code
in
(
d
.
DIALOG_CANCEL
,
d
.
DIALOG_ESC
):
return
False
...
...
@@ -659,6 +662,7 @@ def sysprep(session):
"
run on the image. Press <Help> to see details about the system
"
"
preparation tasks.
"
,
title
=
"
Run system preparation tasks
"
,
choices
=
choices
,
width
=
70
,
ok_label
=
"
Run
"
,
help_button
=
1
)
tags
=
map
(
lambda
x
:
x
.
strip
(
'"'
),
tags
)
# Needed for OpenSUSE
if
code
in
(
d
.
DIALOG_CANCEL
,
d
.
DIALOG_ESC
):
return
False
...
...
This diff is collapsed.
Click to expand it.
image_creator/version.py
+
4
−
4
View file @
de99af00
__version__
=
"
0.4.
1
"
__version_info__
=
[
'
0
'
,
'
4
'
,
'
1
'
]
__version__
=
"
0.4.
2
"
__version_info__
=
[
'
0
'
,
'
4
'
,
'
2
'
]
__version_vcs_info__
=
{
'
branch
'
:
'
master
'
,
'
revid
'
:
'
62
8054a
'
,
'
revno
'
:
31
3
}
'
revid
'
:
'
62
23cd7
'
,
'
revno
'
:
31
6
}
__version_user_info__
=
"
skalkoto@darkstar.admin.grnet.gr
"
This diff is collapsed.
Click to expand it.
version
+
1
−
1
View file @
de99af00
0.4.
1
0.4.
2
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