Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
69b6aa30
Unverified
Commit
69b6aa30
authored
Apr 24, 2019
by
pgauret
Committed by
GitHub
Apr 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 'zfs get' command order
Another case of calling 'zfs get' which requires reordering arguments to work with latest zfs. Signed-off-by:
Paul Gauret
<
pgauret@yahoo.com
>
parent
a24d015d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
zfs.c
src/lxc/storage/zfs.c
+1
-1
No files found.
src/lxc/storage/zfs.c
View file @
69b6aa30
...
...
@@ -101,7 +101,7 @@ int zfs_get_parent_snapshot_exec_wrapper(void *args)
{
struct
zfs_args
*
zfs_args
=
args
;
execlp
(
"zfs"
,
"zfs"
,
"get"
,
"
origin"
,
"-o"
,
"value"
,
"-H
"
,
execlp
(
"zfs"
,
"zfs"
,
"get"
,
"
-H"
,
"-o"
,
"value"
,
"origin
"
,
zfs_args
->
dataset
,
(
char
*
)
NULL
);
return
-
1
;
...
...
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