1option('tests', type: 'feature', description: 'Build tests') 2 3option('authority-limit', 4 type: 'integer', 5 value: 10, 6 description: 'Authority certificates limit', 7) 8 9option('ca-cert-extension', 10 type: 'feature', 11 description: 'Enable CA certificate manager (IBM specific)' 12) 13 14option('config-bmcweb', 15 type: 'feature', 16 description: 'Install bmcweb cert configs', 17) 18 19option('config-authority', 20 type: 'feature', 21 description: 'Install authority cert configs', 22) 23 24option('authorities-list-name', 25 type: 'string', 26 value: 'trust_bundle', 27 description: 'File name of the authorities list', 28) 29 30option('allow-expired', 31 type: 'feature', 32 value: 'enabled', 33 description: 'Allow expired certificates', 34) 35