mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
59ac54e2fc
- ABI4 by default, fallback to abi 3. - aa-prebuild cli that can be used by other project shipping profiles. - --file option to cli to only build one dev profile. - add abi version filter to only & exclude directives.
50 lines
1.1 KiB
Go
50 lines
1.1 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 (
|
|
"github.com/roddhjav/apparmor.d/pkg/paths"
|
|
"github.com/roddhjav/apparmor.d/pkg/prebuild"
|
|
)
|
|
|
|
type Ignore struct {
|
|
prebuild.Base
|
|
}
|
|
|
|
func init() {
|
|
RegisterTask(&Ignore{
|
|
Base: prebuild.Base{
|
|
Keyword: "ignore",
|
|
Msg: "Ignore profiles and files from:",
|
|
},
|
|
})
|
|
}
|
|
|
|
func (p Ignore) Apply() ([]string, error) {
|
|
res := []string{}
|
|
for _, name := range []string{"main", prebuild.Distribution} {
|
|
for _, ignore := range prebuild.Ignore.Read(name) {
|
|
profile := prebuild.Root.Join(ignore)
|
|
if profile.NotExist() {
|
|
files, err := prebuild.RootApparmord.ReadDirRecursiveFiltered(nil, paths.FilterNames(ignore))
|
|
if err != nil {
|
|
return res, err
|
|
}
|
|
for _, path := range files {
|
|
if err := path.RemoveAll(); err != nil {
|
|
return res, err
|
|
}
|
|
}
|
|
} else {
|
|
if err := profile.RemoveAll(); err != nil {
|
|
return res, err
|
|
}
|
|
}
|
|
}
|
|
res = append(res, prebuild.IgnoreDir.Join(name+".ignore").String())
|
|
}
|
|
return res, nil
|
|
}
|