Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos-caddy
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
Guillaume Hervier
slapos-caddy
Commits
bca4d4e3
Commit
bca4d4e3
authored
Oct 24, 2012
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
substitute process in execution
parent
73baf7a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
slapos/recipe/librecipe/generic.py
slapos/recipe/librecipe/generic.py
+5
-2
No files found.
slapos/recipe/librecipe/generic.py
View file @
bca4d4e3
...
...
@@ -110,12 +110,15 @@ class GenericBaseRecipe(object):
return
script
def
createWrapper
(
self
,
name
,
command
,
parameters
):
"""Creates a very simple (one command) shell script. Takes care of quoting."""
"""
Creates a very simple (one command) shell script for process replacement.
Takes care of quoting.
"""
q
=
shlex
.
quote
lines
=
[
'#!/bin/sh'
,
shlex
.
quote
(
command
)
'exec %s'
%
shlex
.
quote
(
command
)
]
for
param
in
parameters
:
...
...
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