mirror of
https://github.com/mudler/luet.git
synced 2025-05-09 08:48:02 +00:00
101 lines
2.5 KiB
Go
101 lines
2.5 KiB
Go
// Copyright © 2019-2020 Ettore Di Giacinto <mudler@gentoo.org>
|
|
// Daniele Rondina <geaaru@sabayonlinux.org>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package installer
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"path"
|
|
"path/filepath"
|
|
"regexp"
|
|
|
|
"github.com/ghodss/yaml"
|
|
|
|
. "github.com/mudler/luet/pkg/config"
|
|
. "github.com/mudler/luet/pkg/logger"
|
|
)
|
|
|
|
func LoadConfigProtectConfs(c *LuetConfig) error {
|
|
var regexConfs = regexp.MustCompile(`.yml$`)
|
|
var err error
|
|
|
|
rootfs := ""
|
|
|
|
// Respect the rootfs param on read repositories
|
|
if !c.ConfigFromHost {
|
|
rootfs, err = c.GetSystem().GetRootFsAbs()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
for _, cdir := range c.ConfigProtectConfDir {
|
|
cdir = filepath.Join(rootfs, cdir)
|
|
|
|
Debug("Parsing Config Protect Directory", cdir, "...")
|
|
|
|
files, err := ioutil.ReadDir(cdir)
|
|
if err != nil {
|
|
Debug("Skip dir", cdir, ":", err.Error())
|
|
continue
|
|
}
|
|
|
|
for _, file := range files {
|
|
if file.IsDir() {
|
|
continue
|
|
}
|
|
|
|
if !regexConfs.MatchString(file.Name()) {
|
|
Debug("File", file.Name(), "skipped.")
|
|
continue
|
|
}
|
|
|
|
content, err := ioutil.ReadFile(path.Join(cdir, file.Name()))
|
|
if err != nil {
|
|
Warning("On read file", file.Name(), ":", err.Error())
|
|
Warning("File", file.Name(), "skipped.")
|
|
continue
|
|
}
|
|
|
|
r, err := LoadConfigProtectConFile(file.Name(), content)
|
|
if err != nil {
|
|
Warning("On parse file", file.Name(), ":", err.Error())
|
|
Warning("File", file.Name(), "skipped.")
|
|
continue
|
|
}
|
|
|
|
if r.Name == "" || len(r.Directories) == 0 {
|
|
Warning("Invalid config protect file", file.Name())
|
|
Warning("File", file.Name(), "skipped.")
|
|
continue
|
|
}
|
|
|
|
c.AddConfigProtectConfFile(r)
|
|
}
|
|
}
|
|
return nil
|
|
|
|
}
|
|
|
|
func LoadConfigProtectConFile(filename string, data []byte) (*ConfigProtectConfFile, error) {
|
|
ans := NewConfigProtectConfFile(filename)
|
|
err := yaml.Unmarshal(data, &ans)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ans, nil
|
|
}
|