apparmor.d/pkg/prebuild/builder/dev.go
Alexandre Pujol 59ac54e2fc
build: reorganise build: abi4, fallback, prebuild cli
- 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.
2024-10-02 16:22:46 +01:00

37 lines
657 B
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 builder
import (
"github.com/roddhjav/apparmor.d/pkg/prebuild"
"github.com/roddhjav/apparmor.d/pkg/util"
)
var (
regDev = util.ToRegexRepl([]string{
`Cx`, `cx`,
`PUx`, `pux`,
`Px`, `px`,
`Ux`, `ux`,
})
)
type Dev struct {
prebuild.Base
}
func init() {
RegisterBuilder(&Dev{
Base: prebuild.Base{
Keyword: "dev",
Msg: "Apply test development changes",
},
})
}
func (b Dev) Apply(opt *Option, profile string) (string, error) {
return regDev.Replace(profile), nil
}