mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
34973baaea
Only enabled on Ubuntu & opensuse
62 lines
1.2 KiB
Go
62 lines
1.2 KiB
Go
// apparmor.d - Full set of apparmor profiles
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
package prepare
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/roddhjav/apparmor.d/pkg/prebuild/cfg"
|
|
"github.com/roddhjav/apparmor.d/pkg/util"
|
|
)
|
|
|
|
type Configure struct {
|
|
cfg.Base
|
|
}
|
|
|
|
func init() {
|
|
RegisterTask(&Configure{
|
|
Base: cfg.Base{
|
|
Keyword: "configure",
|
|
Msg: "Set distribution specificities",
|
|
},
|
|
})
|
|
}
|
|
|
|
func (p Configure) Apply() ([]string, error) {
|
|
res := []string{}
|
|
switch cfg.Distribution {
|
|
case "arch", "opensuse":
|
|
if cfg.Overwrite {
|
|
if err := cfg.Overwrite.Apply(); err != nil {
|
|
return res, err
|
|
}
|
|
}
|
|
|
|
case "ubuntu":
|
|
if cfg.Overwrite {
|
|
if err := cfg.Overwrite.Apply(); err != nil {
|
|
return res, err
|
|
}
|
|
} else {
|
|
if err := util.CopyTo(cfg.DistDir.Join("ubuntu"), cfg.RootApparmord); err != nil {
|
|
return res, err
|
|
}
|
|
}
|
|
|
|
case "debian", "whonix":
|
|
cfg.Overwrite.AptClean()
|
|
|
|
// Copy Debian specific abstractions
|
|
if err := util.CopyTo(cfg.DistDir.Join("ubuntu"), cfg.RootApparmord); err != nil {
|
|
return res, err
|
|
}
|
|
|
|
default:
|
|
return []string{}, fmt.Errorf("%s is not a supported distribution", cfg.Distribution)
|
|
|
|
}
|
|
return res, nil
|
|
}
|