apparmor.d/pkg/prebuild/prepare/core.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

40 lines
742 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 prepare
import (
"fmt"
"github.com/roddhjav/apparmor.d/pkg/prebuild"
)
var (
// Prepare the build directory with the following tasks
Prepares = []Task{}
// Available prepare tasks
Tasks = map[string]Task{}
)
// Main directive interface
type Task interface {
prebuild.BaseInterface
Apply() ([]string, error)
}
func Register(names ...string) {
for _, name := range names {
if b, present := Tasks[name]; present {
Prepares = append(Prepares, b)
} else {
panic(fmt.Sprintf("Unknown task: %s", name))
}
}
}
func RegisterTask(t Task) {
Tasks[t.Name()] = t
}