mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-14 23:43:56 +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.
40 lines
708 B
Go
40 lines
708 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 prebuild
|
|
|
|
import "fmt"
|
|
|
|
type BaseInterface interface {
|
|
Message() string
|
|
Name() string
|
|
Usage() []string
|
|
}
|
|
|
|
type Base struct {
|
|
Msg string
|
|
Keyword string
|
|
Help []string
|
|
}
|
|
|
|
func (b Base) Name() string {
|
|
return b.Keyword
|
|
}
|
|
|
|
func (b Base) Usage() []string {
|
|
return b.Help
|
|
}
|
|
|
|
func (b Base) Message() string {
|
|
return b.Msg
|
|
}
|
|
|
|
func Help[T BaseInterface](name string, tasks map[string]T) string {
|
|
res := fmt.Sprintf("%s tasks:\n", name)
|
|
for _, t := range tasks {
|
|
res += fmt.Sprintf(" %s - %s\n", t.Name(), t.Message())
|
|
}
|
|
return res
|
|
}
|