build: set default ABI to abi4.
This commit is contained in:
parent
59ac54e2fc
commit
344ccf3003
3 changed files with 6 additions and 2 deletions
|
|
@ -13,7 +13,11 @@ import (
|
||||||
"github.com/roddhjav/apparmor.d/pkg/prebuild/prepare"
|
"github.com/roddhjav/apparmor.d/pkg/prebuild/prepare"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Cli arguments have priority over the settings entered here
|
||||||
func init() {
|
func init() {
|
||||||
|
// Define the default ABI
|
||||||
|
prebuild.ABI = 4
|
||||||
|
|
||||||
// Define the tasks applied by default
|
// Define the tasks applied by default
|
||||||
prepare.Register(
|
prepare.Register(
|
||||||
"synchronise",
|
"synchronise",
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,6 @@ func Prebuild() {
|
||||||
flag.Usage()
|
flag.Usage()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
logging.Step("Building apparmor.d profiles for %s.", prebuild.Distribution)
|
|
||||||
|
|
||||||
if full {
|
if full {
|
||||||
prepare.Register("fsp")
|
prepare.Register("fsp")
|
||||||
|
|
@ -111,6 +110,7 @@ func Prebuild() {
|
||||||
configure.OneFile = true
|
configure.OneFile = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logging.Step("Building apparmor.d profiles for %s on ABI%d.", prebuild.Distribution, prebuild.ABI)
|
||||||
if err := Prepare(); err != nil {
|
if err := Prepare(); err != nil {
|
||||||
logging.Fatal("%s", err.Error())
|
logging.Fatal("%s", err.Error())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ type Directive interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
func Usage() string {
|
func Usage() string {
|
||||||
res := fmt.Sprintf("Directive:\n")
|
res := "Directive:\n"
|
||||||
for _, d := range Directives {
|
for _, d := range Directives {
|
||||||
for _, h := range d.Usage() {
|
for _, h := range d.Usage() {
|
||||||
res += fmt.Sprintf(" %s%s %s\n", Keyword, d.Name(), h)
|
res += fmt.Sprintf(" %s%s %s\n", Keyword, d.Name(), h)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue