pakket
pakket copied to clipboard
all variables in util/os need to be in the config
var (
// Path that houses config & repositores
PakketPath = "/etc/pakket"
// Path to main pakket config
ConfigFile = path.Join(PakketPath, "config.toml")
// Path to lockfile w/ currently installed packages
LockfilePath = path.Join(PakketPath, "lockfile.toml")
// Path to pakket repositories
RepoPath = path.Join(PakketPath, "repositories")
// Path to temporary downloads/clones
DownloadPath = "/var/tmp/pakket"
// Prefix
Prefix = "/usr/local"
)