src.nth.io/

summaryrefslogtreecommitdiff
path: root/nodejs/defaults/main.yaml
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-07-30 20:24:28 -0500
committerLuke Hoersten <[email protected]>2026-07-30 20:24:28 -0500
commitfd40a5f246f029de659f01b932b9045f003c20a8 (patch)
tree6b87e3c8a5941d22df12e14199591116848d7231 /nodejs/defaults/main.yaml
parentad68d4cdc2424c5bb03b05faae831b3992e49279 (diff)
nodejs: delete the role
Nothing consumes it: no play in main.yaml and no role dependency. 26.04 ships nodejs 22 in apt anyway, so any future consumer can just apt install it.
Diffstat (limited to 'nodejs/defaults/main.yaml')
-rw-r--r--nodejs/defaults/main.yaml12
1 files changed, 0 insertions, 12 deletions
diff --git a/nodejs/defaults/main.yaml b/nodejs/defaults/main.yaml
deleted file mode 100644
index e67f845..0000000
--- a/nodejs/defaults/main.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
----
-
-# https://nodejs.org/en/download/prebuilt-binaries
-nodejs_version: "v22.15.0"
-# Node.js dist filenames use arm64/x64, not the kernel's aarch64/x86_64.
-nodejs_arch_map:
- x86_64: "x64"
- aarch64: "arm64"
- armv7l: "armv7l"
-nodejs_arch: "{{ nodejs_arch_map[ansible_facts['architecture']] | default(ansible_facts['architecture']) }}"
-nodejs_dir: "node-{{nodejs_version}}-{{ansible_facts['system'] | lower}}-{{nodejs_arch}}"
-nodejs_src: "https://nodejs.org/dist/{{nodejs_version}}/{{nodejs_dir}}.tar.xz"