apparmor.d/pkg/aa/blocks.go

38 lines
611 B
Go
Raw Normal View History

2024-05-25 23:17:32 +02:00
// apparmor.d - Full set of apparmor profiles
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
// SPDX-License-Identifier: GPL-2.0-only
package aa
const (
HAT Kind = "hat"
2024-05-25 23:17:32 +02:00
)
// Hat represents a single AppArmor hat.
type Hat struct {
RuleBase
Name string
Rules Rules
}
func (r *Hat) Validate() error {
return nil
}
func (r *Hat) Compare(other Rule) int {
2024-05-25 23:17:32 +02:00
o, _ := other.(*Hat)
return compare(r.Name, o.Name)
2024-05-25 23:17:32 +02:00
}
func (p *Hat) String() string {
return renderTemplate(p.Kind(), p)
}
func (p *Hat) Constraint() constraint {
return blockKind
}
func (p *Hat) Kind() Kind {
return HAT
2024-05-25 23:17:32 +02:00
}