Signed-off-by: jcsiadal <jeremy.c.siadal@intel.com> Changes default share to /srv/warewulf Update specfile Some changes to match Golang standards
11 lines
255 B
Go
11 lines
255 B
Go
package oci
|
|
|
|
import "github.com/hpcng/warewulf/internal/pkg/warewulfconf"
|
|
import "path/filepath"
|
|
|
|
var defaultCachePath = filepath.Join(warewulfconf.DataStore(), "/container-cache/oci/")
|
|
|
|
const (
|
|
blobPrefix = "blobs"
|
|
rootfsPrefix = "rootfs"
|
|
) |