Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
clpm
clpm
Commits
ca071d38
Commit
ca071d38
authored
Feb 14, 2020
by
Eric Timmons
Browse files
Fix firejail
parent
6c501be1
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/clpm/config.lisp
View file @
ca071d38
...
...
@@ -137,6 +137,14 @@ directory in ~*clpm-config-directories*~."
((
:drakma
)
:type
hash-table
)
((
:firejail
)
:type
hash-table
)
((
:firejail
:path
)
:type
(
or
string
pathname
)
:default
"firejail"
:documentation
"The path to the firejail executable."
)
((
:git
)
:type
hash-table
)
((
:git
:path
)
...
...
@@ -176,7 +184,7 @@ directory in ~*clpm-config-directories*~."
((
:grovel
:sandbox
)
:type
hash-table
)
((
:grovel
:sandbox
:type
)
:type
(
member
:auto
:firejail
)
:type
(
member
:auto
:firejail
:none
)
:default
:auto
:documentation
"The sandbox type to use when groveling."
)
...
...
src/clpm/sandbox/defs.lisp
View file @
ca071d38
...
...
@@ -42,7 +42,7 @@ by the user's config."
(
destructuring-bind
(
key
.
class
)
pair
(
apply
#'
make-instance
class
(
awhen
(
config-value
:sandbox-client
key
)
(
awhen
(
config-value
key
)
(
hash-table-plist
it
)))))
(
defun
compute-available-sandbox-clients
()
...
...
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