From 30a6708a7122069901542f50ed8acb3d793ae322 Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Sat, 25 Jan 2025 21:43:46 -0700 Subject: [PATCH] fix 'not defined' to 'is undefined' --- tasks/pkgs/air.yml | 2 +- tasks/pkgs/alacritty.yml | 2 +- tasks/pkgs/ansible-language-server.yml | 2 +- tasks/pkgs/buf.yml | 2 +- tasks/pkgs/checkmake.yml | 2 +- tasks/pkgs/cmakelang.yml | 2 +- tasks/pkgs/commitlint-cli.yml | 2 +- tasks/pkgs/commitlint-config-conventional.yml | 2 +- tasks/pkgs/consul.yml | 2 +- tasks/pkgs/dotenv-linter.yml | 2 +- tasks/pkgs/eza.yml | 2 +- tasks/pkgs/ghostty.yml | 2 +- tasks/pkgs/glow.yml | 2 +- tasks/pkgs/gopls.yml | 2 +- tasks/pkgs/htmx-lsp.yml | 2 +- tasks/pkgs/lazygit.yml | 2 +- tasks/pkgs/markdownlint-cli.yml | 2 +- tasks/pkgs/neovide.yml | 2 +- tasks/pkgs/nomad.yml | 2 +- tasks/pkgs/nushell.yml | 4 ++-- tasks/pkgs/packer.yml | 2 +- tasks/pkgs/quobix-vacuum.yml | 2 +- tasks/pkgs/revive.yml | 2 +- tasks/pkgs/sqlfluff.yml | 2 +- tasks/pkgs/starship.yml | 2 +- tasks/pkgs/tailwindcss-languageserver.yml | 2 +- tasks/pkgs/templ.yml | 2 +- tasks/pkgs/terraform.yml | 2 +- tasks/pkgs/vault.yml | 2 +- 29 files changed, 30 insertions(+), 30 deletions(-) diff --git a/tasks/pkgs/air.yml b/tasks/pkgs/air.yml index 1dc2a02..7e19712 100644 --- a/tasks/pkgs/air.yml +++ b/tasks/pkgs/air.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/alacritty.yml b/tasks/pkgs/alacritty.yml index dc3c9bf..adcfabf 100644 --- a/tasks/pkgs/alacritty.yml +++ b/tasks/pkgs/alacritty.yml @@ -11,7 +11,7 @@ - name: install rust and cargo ansible.builtin.include_tasks: file: "pkgs/rust.yml" - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - name: append to pkgs set_fact: diff --git a/tasks/pkgs/ansible-language-server.yml b/tasks/pkgs/ansible-language-server.yml index 4c3467f..ef2d10a 100644 --- a/tasks/pkgs/ansible-language-server.yml +++ b/tasks/pkgs/ansible-language-server.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/nodejs.yml - when: pkgconfig_nodejs not defined + when: pkgconfig_nodejs is undefined - name: add to npmpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/buf.yml b/tasks/pkgs/buf.yml index b986fa4..e83e22d 100644 --- a/tasks/pkgs/buf.yml +++ b/tasks/pkgs/buf.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/checkmake.yml b/tasks/pkgs/checkmake.yml index 32fc062..09e0d8a 100644 --- a/tasks/pkgs/checkmake.yml +++ b/tasks/pkgs/checkmake.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/cmakelang.yml b/tasks/pkgs/cmakelang.yml index eeddb87..a50bae1 100644 --- a/tasks/pkgs/cmakelang.yml +++ b/tasks/pkgs/cmakelang.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/pipx.yml - when: pkgconfig_pipx not defined + when: pkgconfig_pipx is undefined - name: add to pipxpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/commitlint-cli.yml b/tasks/pkgs/commitlint-cli.yml index 4ed454f..592eba4 100644 --- a/tasks/pkgs/commitlint-cli.yml +++ b/tasks/pkgs/commitlint-cli.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/nodejs.yml - when: pkgconfig_nodejs not defined + when: pkgconfig_nodejs is undefined - name: add to npmpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/commitlint-config-conventional.yml b/tasks/pkgs/commitlint-config-conventional.yml index f66fb52..2f0ebcd 100644 --- a/tasks/pkgs/commitlint-config-conventional.yml +++ b/tasks/pkgs/commitlint-config-conventional.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/nodejs.yml - when: pkgconfig_nodejs not defined + when: pkgconfig_nodejs is undefined - name: add to npmpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/consul.yml b/tasks/pkgs/consul.yml index 6abb64c..2d73002 100644 --- a/tasks/pkgs/consul.yml +++ b/tasks/pkgs/consul.yml @@ -3,7 +3,7 @@ - name: ensure hashicorp repo is active ansible.builtin.include_tasks: file: "pkgs/hashicorp_repo.yml" - when: pkgconfig_hashicorp not defined + when: pkgconfig_hashicorp is undefined - name: append to syspkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/dotenv-linter.yml b/tasks/pkgs/dotenv-linter.yml index 6db9337..e1abe12 100644 --- a/tasks/pkgs/dotenv-linter.yml +++ b/tasks/pkgs/dotenv-linter.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: "pkgs/rust.yml" - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - name: add to cargopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/eza.yml b/tasks/pkgs/eza.yml index 7036f39..decc7f5 100644 --- a/tasks/pkgs/eza.yml +++ b/tasks/pkgs/eza.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: "pkgs/rust.yml" - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - name: add to cargopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/ghostty.yml b/tasks/pkgs/ghostty.yml index 1bdc8ef..316a99a 100644 --- a/tasks/pkgs/ghostty.yml +++ b/tasks/pkgs/ghostty.yml @@ -9,7 +9,7 @@ block: - ansible.builtin.include_tasks: file: "pkgs/terra_repo.yml" - when: pkgconfig_terrarepo not defined + when: pkgconfig_terrarepo is undefined - name: append to pkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/glow.yml b/tasks/pkgs/glow.yml index bac7eea..169c6a7 100644 --- a/tasks/pkgs/glow.yml +++ b/tasks/pkgs/glow.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/gopls.yml b/tasks/pkgs/gopls.yml index 6799237..da11381 100644 --- a/tasks/pkgs/gopls.yml +++ b/tasks/pkgs/gopls.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/htmx-lsp.yml b/tasks/pkgs/htmx-lsp.yml index ee184d1..f228e6b 100644 --- a/tasks/pkgs/htmx-lsp.yml +++ b/tasks/pkgs/htmx-lsp.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: "pkgs/rust.yml" - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - name: add to cargopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/lazygit.yml b/tasks/pkgs/lazygit.yml index 4f9a735..0bff302 100644 --- a/tasks/pkgs/lazygit.yml +++ b/tasks/pkgs/lazygit.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/markdownlint-cli.yml b/tasks/pkgs/markdownlint-cli.yml index 6d90065..3cc21d5 100644 --- a/tasks/pkgs/markdownlint-cli.yml +++ b/tasks/pkgs/markdownlint-cli.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/nodejs.yml - when: pkgconfig_nodejs not defined + when: pkgconfig_nodejs is undefined - name: add to npmpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/neovide.yml b/tasks/pkgs/neovide.yml index 11d6c11..f689b09 100644 --- a/tasks/pkgs/neovide.yml +++ b/tasks/pkgs/neovide.yml @@ -6,7 +6,7 @@ pkgconfig_neovide: "{{ _neovide | ansible.builtin.combine(pkgconfig.neovide) }}" - ansible.builtin.include_tasks: file: pkgs/rust.yml - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - name: append to pkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/nomad.yml b/tasks/pkgs/nomad.yml index 0c741d4..722496b 100644 --- a/tasks/pkgs/nomad.yml +++ b/tasks/pkgs/nomad.yml @@ -2,7 +2,7 @@ - name: ensure hashicorp repo is active ansible.builtin.include_tasks: file: "pkgs/hashicorp_repo.yml" - when: pkgconfig_hashicorp not defined + when: pkgconfig_hashicorp is undefined - name: append to pkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/nushell.yml b/tasks/pkgs/nushell.yml index ba27fa9..c0ade33 100644 --- a/tasks/pkgs/nushell.yml +++ b/tasks/pkgs/nushell.yml @@ -7,11 +7,11 @@ - ansible.builtin.include_tasks: file: pkgs/rust.yml - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - ansible.builtin.include_tasks: file: pkgs/carapace.yml - when: pkgconfig_carapace not defined + when: pkgconfig_carapace is undefined - name: append to pkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/packer.yml b/tasks/pkgs/packer.yml index be51813..0aff20e 100644 --- a/tasks/pkgs/packer.yml +++ b/tasks/pkgs/packer.yml @@ -2,7 +2,7 @@ - name: ensure hashicorp repo is active ansible.builtin.include_tasks: file: "pkgs/hashicorp_repo.yml" - when: pkgconfig_hashicorp not defined + when: pkgconfig_hashicorp is undefined - name: append to pkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/quobix-vacuum.yml b/tasks/pkgs/quobix-vacuum.yml index 5fc3cd6..82470a2 100644 --- a/tasks/pkgs/quobix-vacuum.yml +++ b/tasks/pkgs/quobix-vacuum.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/nodejs.yml - when: pkgconfig_nodejs not defined + when: pkgconfig_nodejs is undefined - name: add to npmpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/revive.yml b/tasks/pkgs/revive.yml index ececb52..e965bfc 100644 --- a/tasks/pkgs/revive.yml +++ b/tasks/pkgs/revive.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/sqlfluff.yml b/tasks/pkgs/sqlfluff.yml index 50d00e2..324efed 100644 --- a/tasks/pkgs/sqlfluff.yml +++ b/tasks/pkgs/sqlfluff.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/pipx.yml - when: pkgconfig_pipx not defined + when: pkgconfig_pipx is undefined - name: add to pipxpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/starship.yml b/tasks/pkgs/starship.yml index c8f35ce..9a529fc 100644 --- a/tasks/pkgs/starship.yml +++ b/tasks/pkgs/starship.yml @@ -2,7 +2,7 @@ - name: install rust and cargo ansible.builtin.include_tasks: file: "pkgs/rust.yml" - when: pkgconfig_rust not defined + when: pkgconfig_rust is undefined - name: add to cargopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/tailwindcss-languageserver.yml b/tasks/pkgs/tailwindcss-languageserver.yml index 96e6414..3f4ccc6 100644 --- a/tasks/pkgs/tailwindcss-languageserver.yml +++ b/tasks/pkgs/tailwindcss-languageserver.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/nodejs.yml - when: pkgconfig_nodejs not defined + when: pkgconfig_nodejs is undefined - name: add to npmpkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/templ.yml b/tasks/pkgs/templ.yml index 366135c..b4593a7 100644 --- a/tasks/pkgs/templ.yml +++ b/tasks/pkgs/templ.yml @@ -1,7 +1,7 @@ --- - ansible.builtin.include_tasks: file: pkgs/go.yml - when: pkgconfig_go not defined + when: pkgconfig_go is undefined - name: add to gopkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/terraform.yml b/tasks/pkgs/terraform.yml index d23122a..b11ff69 100644 --- a/tasks/pkgs/terraform.yml +++ b/tasks/pkgs/terraform.yml @@ -2,7 +2,7 @@ - name: ensure hashicorp repo is active ansible.builtin.include_tasks: file: "pkgs/hashicorp_repo.yml" - when: pkgconfig_hashicorp not defined + when: pkgconfig_hashicorp is undefined - name: append to pkgs ansible.builtin.set_fact: diff --git a/tasks/pkgs/vault.yml b/tasks/pkgs/vault.yml index 8a93445..8685e6a 100644 --- a/tasks/pkgs/vault.yml +++ b/tasks/pkgs/vault.yml @@ -2,7 +2,7 @@ - name: ensure hashicorp repo is active ansible.builtin.include_tasks: file: "pkgs/hashicorp_repo.yml" - when: pkgconfig_hashicorp not defined + when: pkgconfig_hashicorp is undefined - name: append to pkgs ansible.builtin.set_fact: