chore: document build the enabled task.

This commit is contained in:
Alexandre Pujol 2024-10-04 16:14:40 +01:00
parent 18a71512a9
commit 4b5f7f2b52
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
3 changed files with 14 additions and 27 deletions

View file

@ -20,18 +20,18 @@ func init() {
// Define the tasks applied by default
prepare.Register(
"synchronise",
"ignore",
"merge",
"configure",
"setflags",
"overwrite",
"systemd-default",
"synchronise", // Initialize a new clean apparmor.d build directory
"ignore", // Ignore profiles and files from dist/ignore
"merge", // Merge profiles (from group/, profiles-*-*/) to a unified apparmor.d directory
"configure", // Set distribution specificities
"setflags", // Set flags as definied in dist/flags
"overwrite", // Overwrite dummy upstream profiles
"systemd-default", // Set systemd unit drop in files for dbus profiles
)
// Build tasks applied by default
builder.Register(
"userspace", // Resolve variable in the userspace profile
"userspace", // Resolve variable in the userspace profile
"dev", // Temporary fix for #74, #80 & #235
)
@ -65,9 +65,6 @@ func init() {
/etc/apparmor.d/whonix-firewall
`
}
if prebuild.ABI == 3 {
builder.Register("abi3")
}
}
func main() {