mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-07-10 04:25:47 +00:00
add dummy type fields for pkgbuild generators
This field is required in order to pass config validation in case if section name differs from default one. Also by default keyring_generator and mirrorlist_generator have been renamed to keyring-generator and mirrorlist-generator respectively for consistence
This commit is contained in:
@ -46,9 +46,13 @@ class KeyringTrigger(Trigger):
|
||||
},
|
||||
},
|
||||
},
|
||||
"keyring_generator": {
|
||||
"keyring-generator": {
|
||||
"type": "dict",
|
||||
"schema": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"allowed": ["keyring-generator"],
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
},
|
||||
|
@ -42,9 +42,13 @@ class MirrorlistTrigger(Trigger):
|
||||
},
|
||||
},
|
||||
},
|
||||
"mirrorlist_generator": {
|
||||
"mirrorlist-generator": {
|
||||
"type": "dict",
|
||||
"schema": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"allowed": ["mirrorlist-generator"],
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
},
|
||||
|
Reference in New Issue
Block a user