File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -217,9 +217,15 @@ of the `ops` group. Read the **User and ACL Management** section for more info.
217
217
The backend needs to be supported by [ Proxmox] ( https://pve.proxmox.com/pve-docs/chapter-pvesm.html ) .
218
218
Read the ** Storage Management** section for more info.
219
219
220
- ` pve_ssh_port ` allows you to change the SSH service port. If your SSH is listing
221
- on a different port then 22, please set this variable. If a new node is joining
222
- the cluster, the PVE cluster needs to communicate once via SSH.
220
+ ` pve_ssh_port ` allows you to change the SSH port. If your SSH is listening on
221
+ a port other than the default 22, please set this variable. If a new node is
222
+ joining the cluster, the PVE cluster needs to communicate once via SSH.
223
+
224
+ ` pve_manage_ssh ` (default true) allows you to disable any changes this module
225
+ would make to your SSH server config. This is useful if you use another role
226
+ to manage your SSH server. Note that setting this to false is not officially
227
+ supported, you're on your own to replicate the changes normally made in
228
+ ssh_cluster_config.yml.
223
229
224
230
` interfaces_template ` is set to the path of a template we'll use for configuring
225
231
the network on these Debian machines. This is only necessary if you want to
Original file line number Diff line number Diff line change @@ -39,3 +39,4 @@ pve_users: []
39
39
pve_acls : []
40
40
pve_storages : []
41
41
pve_ssh_port : 22
42
+ pve_manage_ssh : true
Original file line number Diff line number Diff line change 18
18
when : " pve_cluster_enabled | bool"
19
19
20
20
- import_tasks : ssh_cluster_config.yml
21
+ when :
22
+ - " pve_manage_ssh | bool and pve_cluster_enabled | bool"
21
23
22
24
- name : Run handlers if needed (sshd reload)
23
25
meta : flush_handlers
You can’t perform that action at this time.
0 commit comments