Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
isaak yansane-sisk
slapos
Commits
296d58c1
Commit
296d58c1
authored
Feb 21, 2012
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pop is your friend.
parent
fe10b220
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
slapos/recipe/mkdirectory.py
slapos/recipe/mkdirectory.py
+1
-6
No files found.
slapos/recipe/mkdirectory.py
View file @
296d58c1
...
...
@@ -33,12 +33,7 @@ class Recipe(GenericBaseRecipe):
def
_options
(
self
,
options
):
self
.
directory
=
options
.
copy
()
del
self
.
directory
[
'recipe'
]
str_mode
=
'0700'
if
'mode'
in
self
.
directory
:
str_mode
=
self
.
directory
[
'mode'
]
del
self
.
directory
[
'mode'
]
self
.
mode
=
int
(
str_mode
,
8
)
self
.
mode
=
int
(
self
.
directory
.
pop
(
'mode'
,
'700'
),
8
)
def
install
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment