Skip to content

Commit 848988a

Browse files
committed
define fingerprint in WATO
1 parent ea0e384 commit 848988a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/check_mk/base/cee/plugins/bakery/proxmox_bs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def get_proxmox_bs_files(conf: Dict[str, Any]) -> FileGenerator:
3131
lines=[
3232
"export PBS_USERNAME=%s" % conf.get('auth_user'),
3333
"export PBS_PASSWORD=%s" % conf.get('auth_pass'),
34+
"export PBS_FINGERPRINT=%s" % conf.get('fingerprint'),
3435
],
3536
target=Path("proxmox_bs.env"),
3637
)

web/plugins/wato/proxmox_bs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def _valuespec_agent_config_proxmox_bs():
3737
elements = [
3838
( 'auth_user', TextInput(title=_("Username")) ),
3939
( 'auth_pass', Password(title=_("Password")) ),
40+
( 'fingerprint', TextInput(title=_("Fingerprint")) ),
4041
],
4142
optional_keys = [],
4243
),

0 commit comments

Comments
 (0)