add all inputs

Signed-off-by: Martin Schurz <Martin.Schurz@telekom.de>
This commit is contained in:
Martin Schurz 2023-11-19 01:12:44 +01:00
parent d079b4a57f
commit ba94b91d38
2 changed files with 6 additions and 2 deletions

View file

@ -19,8 +19,8 @@
# author: Dominik Richter
# author: Patrick Muench
sysctl_forwarding = input('sysctl_forwarding', value: false, description: 'Is network forwarding needed?')
kernel_modules_disabled = input('kernel_modules_disabled', value: 0, description: 'Should loading of kernel modules be disabled?')
sysctl_forwarding = input('sysctl_forwarding', value: false)
kernel_modules_disabled = input('kernel_modules_disabled', value: 0)
container_execution = begin
virtualization.role == 'guest' && virtualization.system =~ /^(lxc|docker)$/
rescue NoMethodError

View file

@ -27,3 +27,7 @@ inputs:
description: List of mountpoints where \'nosuid\' mount option should be set
- name: mount_dev_blocklist
description: List of mountpoints where \'nodev\' mount option should be set
- name: sysctl_forwarding
description: Is network forwarding needed?
- name: kernel_modules_disabled
description: Should loading of kernel modules be disabled?