mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +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.
42 lines
1.0 KiB
Go
42 lines
1.0 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/prebuild"
|
|
"github.com/roddhjav/apparmor.d/pkg/util"
|
|
)
|
|
|
|
type SystemdDefault struct {
|
|
prebuild.Base
|
|
}
|
|
|
|
type SystemdEarly struct {
|
|
prebuild.Base
|
|
}
|
|
|
|
func init() {
|
|
RegisterTask(&SystemdDefault{
|
|
Base: prebuild.Base{
|
|
Keyword: "systemd-default",
|
|
Msg: "Configure systemd unit drop in files to a profile for some units",
|
|
},
|
|
})
|
|
RegisterTask(&SystemdEarly{
|
|
Base: prebuild.Base{
|
|
Keyword: "systemd-early",
|
|
Msg: "Configure systemd unit drop in files to ensure some service start after apparmor",
|
|
},
|
|
})
|
|
}
|
|
|
|
func (p SystemdDefault) Apply() ([]string, error) {
|
|
return []string{}, util.CopyTo(prebuild.SystemdDir.Join("default"), prebuild.Root.Join("systemd"))
|
|
}
|
|
|
|
func (p SystemdEarly) Apply() ([]string, error) {
|
|
return []string{}, util.CopyTo(prebuild.SystemdDir.Join("early"), prebuild.Root.Join("systemd"))
|
|
}
|