pakket icon indicating copy to clipboard operation
pakket copied to clipboard

all variables in util/os need to be in the config

Open stingalleman opened this issue 3 years ago • 0 comments

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"
)

stingalleman avatar Oct 15 '21 19:10 stingalleman