Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
5163ee5b
Commit
5163ee5b
authored
Feb 08, 2013
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/certificate_repository_path'
parents
9c0d587c
3d830d1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
slapos/format.py
slapos/format.py
+5
-0
slapos/util.py
slapos/util.py
+19
-0
No files found.
slapos/format.py
View file @
5163ee5b
...
...
@@ -59,6 +59,8 @@ def prettify_xml(xml):
return
lxml
.
etree
.
tostring
(
root
,
pretty_print
=
True
)
from
slapos.util
import
mkdir_p
class
OS
(
object
):
"""Wrap parts of the 'os' module to provide logging of performed actions."""
...
...
@@ -1096,6 +1098,9 @@ def run(config):
alter_network
=
config
.
alter_network
,
create_tap
=
config
.
create_tap
)
if
getattr
(
config
,
'certificate_repository_path'
):
mkdir_p
(
config
.
certificate_repository_path
,
mode
=
0o700
)
# Dumping and sending to the erp5 the current configuration
if
not
config
.
dry_run
:
computer
.
dump
(
path_to_xml
=
config
.
computer_xml
,
...
...
slapos/util.py
0 → 100644
View file @
5163ee5b
# -*- coding: utf-8 -*-
import
os
,
errno
def
mkdir_p
(
path
,
mode
=
0o777
):
"""
\
Creates a directory and its parents, if needed.
NB: If the directory already exists, it does not change its permission.
"""
try
:
os
.
makedirs
(
path
,
mode
)
except
OSError
as
exc
:
if
exc
.
errno
==
errno
.
EEXIST
and
os
.
path
.
isdir
(
path
):
pass
else
:
raise
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