mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
Make the backend daemon configurable, please note, still need to disable dropbear as default in config and choose the backend based on config in sshmngr
25 lines
550 B
Text
25 lines
550 B
Text
if PACKAGE_sshmngr
|
|
choice
|
|
prompt "Select backend of time management"
|
|
default SSHMNGR_BACKEND_OPENSSH
|
|
depends on PACKAGE_sshmngr
|
|
help
|
|
Select which backend daemon to use for SSH
|
|
|
|
config SSHMNGR_BACKEND_OPENSSH
|
|
bool "Use openssh for ssh"
|
|
help
|
|
Enable this option to use openssh for ssh.
|
|
|
|
config SSHMNGR_BACKEND_OPENSSH_PAM
|
|
bool "Use openssh with PAM for ssh"
|
|
help
|
|
Enable this option to use PAM for ssh.
|
|
|
|
config SSHMNGR_BACKEND_DROPBEAR
|
|
bool "Use dropbear for ssh"
|
|
help
|
|
Enable this option to use dropbear for ssh.
|
|
|
|
endchoice
|
|
endif
|