build: new structure for internal config files.
This commit is contained in:
parent
e67a66ff94
commit
f8d970faf0
4 changed files with 350 additions and 58 deletions
|
|
@ -19,9 +19,18 @@ var (
|
|||
// FlagDir is the directory where the flags are stored
|
||||
FlagDir *paths.Path = DistDir.Join("flags")
|
||||
|
||||
// IgnoreDir is the directory where the ignore files are stored
|
||||
IgnoreDir *paths.Path = DistDir.Join("ignore")
|
||||
|
||||
// SystemdDir is the directory where the systemd drop-in files are stored
|
||||
SystemdDir *paths.Path = paths.New("systemd")
|
||||
|
||||
// DebianDir is the directory where the debian specific files are stored
|
||||
DebianDir *paths.Path = DistDir.Join("debian")
|
||||
|
||||
// Either or not overwrite some upstreamed profile
|
||||
Overwrite bool = false
|
||||
Overwrite = Overwriter{Enabled: false}
|
||||
|
||||
Ignore = Ignorer{}
|
||||
Flags = Flagger{}
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue