From 6c4621bd569a5a302250621d99d4446514c806cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Mar 2023 02:46:16 +0000 Subject: [PATCH 1/7] chore(deps): bump yamllint from 1.29.0 to 1.30.0 (#261) Bumps [yamllint](https://github.com/adrienverge/yamllint) from 1.29.0 to 1.30.0. - [Release notes](https://github.com/adrienverge/yamllint/releases) - [Changelog](https://github.com/adrienverge/yamllint/blob/master/CHANGELOG.rst) - [Commits](https://github.com/adrienverge/yamllint/compare/v1.29.0...v1.30.0) --- updated-dependencies: - dependency-name: yamllint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1027404d..02b81252 100644 --- a/requirements.txt +++ b/requirements.txt @@ -202,7 +202,7 @@ wcmatch==8.4.1 # via ansible-lint websocket-client==1.4.2 # via kubernetes -yamllint==1.29.0 +yamllint==1.30.0 # via # -r requirements.in # ansible-lint From 49f0a2ce6b3e8ad7f0b13a360336d85c176eb15f Mon Sep 17 00:00:00 2001 From: ThePCGeek Date: Sat, 25 Mar 2023 21:41:04 -0400 Subject: [PATCH 2/7] (fix): correct var (#262) var registered for rc.local check is rcfile but under when it said rclocal which was undefined. changed to rcfile to correct. --- roles/reset/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/reset/tasks/main.yml b/roles/reset/tasks/main.yml index b9cdd6ed..cd3bf720 100644 --- a/roles/reset/tasks/main.yml +++ b/roles/reset/tasks/main.yml @@ -67,18 +67,18 @@ content: "{{ lookup('template', 'templates/rc.local.j2') }}" create: false state: absent - when: proxmox_lxc_configure and rclocal.stat.exists + when: proxmox_lxc_configure and rcfile.stat.exists - name: Check rc.local for cleanup become: true slurp: src: /etc/rc.local register: rcslurp - when: proxmox_lxc_configure and rclocal.stat.exists + when: proxmox_lxc_configure and rcfile.stat.exists - name: Cleanup rc.local if we only have a Shebang line become: true file: path: /etc/rc.local state: absent - when: proxmox_lxc_configure and rclocal.stat.exists and ((rcslurp.content | b64decode).splitlines() | length) <= 1 + when: proxmox_lxc_configure and rcfile.stat.exists and ((rcslurp.content | b64decode).splitlines() | length) <= 1 From 288c4089e0c4f492f03fdca2c1d613489d19f20a Mon Sep 17 00:00:00 2001 From: ThePCGeek Date: Sat, 25 Mar 2023 23:02:59 -0400 Subject: [PATCH 3/7] Pc geek fix proxmox lxc (#263) * (fix): correct var var registered for rc.local check is rcfile but under when it said rclocal which was undefined. changed to rcfile to correct. * add vars file for proxmox host group * remove remote_user from site.yml for proxmox * added newline to fix lint issue * fix added --- --------- Co-authored-by: ThePCGeek --- inventory/sample/group_vars/proxmox.yml | 2 ++ site.yml | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 inventory/sample/group_vars/proxmox.yml diff --git a/inventory/sample/group_vars/proxmox.yml b/inventory/sample/group_vars/proxmox.yml new file mode 100644 index 00000000..ea1759b2 --- /dev/null +++ b/inventory/sample/group_vars/proxmox.yml @@ -0,0 +1,2 @@ +--- +ansible_user: '{{ proxmox_lxc_ssh_user }}' diff --git a/site.yml b/site.yml index d8e4325f..5104cce2 100644 --- a/site.yml +++ b/site.yml @@ -3,7 +3,6 @@ - hosts: proxmox gather_facts: true become: yes - remote_user: "{{ proxmox_lxc_ssh_user }}" roles: - role: proxmox_lxc when: proxmox_lxc_configure From 1c9796e98b9ea74f728922d30e43e54eb1350291 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 12:18:52 -0500 Subject: [PATCH 4/7] chore(deps): bump ansible-lint from 6.14.2 to 6.14.3 (#264) Bumps [ansible-lint](https://github.com/ansible/ansible-lint) from 6.14.2 to 6.14.3. - [Release notes](https://github.com/ansible/ansible-lint/releases) - [Commits](https://github.com/ansible/ansible-lint/compare/v6.14.2...v6.14.3) --- updated-dependencies: - dependency-name: ansible-lint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 02b81252..7d0f858c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ ansible-core==2.14.3 # -r requirements.in # ansible-compat # ansible-lint -ansible-lint==6.14.2 +ansible-lint==6.14.3 # via -r requirements.in arrow==1.2.3 # via jinja2-time @@ -113,6 +113,7 @@ packaging==21.3 # molecule pathspec==0.10.1 # via + # ansible-lint # black # yamllint platformdirs==2.5.2 From c0952288c2a190f7272a21f732efc1c9c5b9fe2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Mar 2023 15:07:16 -0500 Subject: [PATCH 5/7] chore(deps): bump ansible-core from 2.14.3 to 2.14.4 (#265) Bumps [ansible-core](https://github.com/ansible/ansible) from 2.14.3 to 2.14.4. - [Release notes](https://github.com/ansible/ansible/releases) - [Commits](https://github.com/ansible/ansible/compare/v2.14.3...v2.14.4) --- updated-dependencies: - dependency-name: ansible-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7d0f858c..f1d94872 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ # ansible-compat==3.0.1 # via molecule -ansible-core==2.14.3 +ansible-core==2.14.4 # via # -r requirements.in # ansible-compat From 0d6d43e7caa28d88af447de8b87adc56c7051f32 Mon Sep 17 00:00:00 2001 From: Sam Schmit-Van Werweke Date: Mon, 3 Apr 2023 04:31:20 +0200 Subject: [PATCH 6/7] Bump k3s version to v1.24.12+k3s1 (#269) --- inventory/sample/group_vars/all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventory/sample/group_vars/all.yml b/inventory/sample/group_vars/all.yml index 02a2ae3d..0f9de87f 100644 --- a/inventory/sample/group_vars/all.yml +++ b/inventory/sample/group_vars/all.yml @@ -1,5 +1,5 @@ --- -k3s_version: v1.24.11+k3s1 +k3s_version: v1.24.12+k3s1 # this is the user that has ssh access to these machines ansible_user: ansibleuser systemd_dir: /etc/systemd/system From c564a8562aaecfed4d0ee8d61c20763e50d3d7e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 23:34:03 -0500 Subject: [PATCH 7/7] chore(deps): bump ansible-lint from 6.14.3 to 6.14.6 (#275) Bumps [ansible-lint](https://github.com/ansible/ansible-lint) from 6.14.3 to 6.14.6. - [Release notes](https://github.com/ansible/ansible-lint/releases) - [Commits](https://github.com/ansible/ansible-lint/compare/v6.14.3...v6.14.6) --- updated-dependencies: - dependency-name: ansible-lint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f1d94872..b0b93d62 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ ansible-core==2.14.4 # -r requirements.in # ansible-compat # ansible-lint -ansible-lint==6.14.3 +ansible-lint==6.14.6 # via -r requirements.in arrow==1.2.3 # via jinja2-time @@ -113,7 +113,6 @@ packaging==21.3 # molecule pathspec==0.10.1 # via - # ansible-lint # black # yamllint platformdirs==2.5.2