-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from giuseppe/ostree-storage
ostree: new option for the overlay driver
- Loading branch information
Showing
74 changed files
with
2,445 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,6 +129,12 @@ Marks thinpool device for deferred deletion. If the thinpool is in use when the | |
|
||
Specifies the maximum number of retries XFS should attempt to complete IO when ENOSPC (no space) error is returned by underlying storage device. (default: 0, which means to try continuously.) | ||
|
||
**ostree_repo=""** | ||
Tell storage drivers to use the specified OSTree repository. Some storage drivers, such as overlay, might use | ||
|
||
**skip_mount_home=""** | ||
Tell storage drivers to not create a PRIVATE bind mount on their home directory. | ||
|
||
# HISTORY | ||
May 2017, Originally compiled by Dan Walsh <[email protected]> | ||
Format copied from crio.conf man page created by Aleksa Sarai <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
cc -E - $(pkg-config --cflags ostree-1) > /dev/null 2> /dev/null << EOF | ||
#include <ostree-1/ostree.h> | ||
EOF | ||
if test $? -eq 0 ; then | ||
echo ostree | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// +build !ostree | ||
|
||
package ostree | ||
|
||
func OstreeSupport() bool { | ||
return false | ||
} | ||
|
||
func DeleteOSTree(repoLocation, id string) error { | ||
return nil | ||
} | ||
|
||
func CreateOSTreeRepository(repoLocation string, rootUID int, rootGID int) error { | ||
return nil | ||
} | ||
|
||
func ConvertToOSTree(repoLocation, root, id string) error { | ||
return nil | ||
} |
Oops, something went wrong.