Fix linting issues (x2)
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Santiago Lo Coco 2024-04-14 19:44:42 +02:00
parent 4ce291e708
commit 8aa389bea2
3 changed files with 3 additions and 3 deletions

View File

@ -16,4 +16,4 @@
userid: 38000088
expiry_date: '2024-12-31'
passwordless: true
private_key_path: /Users/slococo/keys/
local_accounts_pk_path: /Users/slococo/keys/

View File

@ -40,7 +40,7 @@ argument_specs:
required: false
default: false
description: Boolean value indicating whether SSH key pairs should be generated for passwordless authentication.
private_key_path:
local_accounts_pk_path:
type: str
required: false
default: /tmp

View File

@ -16,7 +16,7 @@
- name: Determine key path
ansible.builtin.set_fact:
key_path: "{{ (private_key_path | default('/tmp')) | regex_replace('/$', '') }}/id_rsa"
key_path: "{{ (local_accounts_pk_path | default('/tmp')) | regex_replace('/$', '') }}/id_rsa"
- name: Generate SSH key pairs for local users
community.crypto.openssh_keypair: