1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// Copyright 2015 Canonical Ltd.
// Copyright 2015 Cloudbase Solutions SRL
// Licensed under the LGPLv3, see LICENCE file for details.
package config
import (
"text/template"
)
const (
// YumSourcesDir is the default directory in which yum sourcefiles are located.
YumSourcesDir = "/etc/yum/repos.d"
// YumKeyfileDir is the default directory for yum repository keys.
YumKeyfileDir = "/etc/pki/rpm-gpg/"
)
// YumSourceTemplate is the template specific to a yum source file.
var YumSourceTemplate = template.Must(template.New("").Parse(`
[{{.Name}}]
name={{.Name}} (added by Juju)
baseurl={{.URL}}
{{if .Key}}gpgcheck=1
gpgkey=%s{{end}}
enabled=1
`[1:]))
|