From 020301b18ab0df507a2b0e44f70fbd74a7f373e0 Mon Sep 17 00:00:00 2001 From: Malik Recoing Date: Sun, 6 Apr 2025 17:32:18 +0200 Subject: [PATCH] OpenTofu install script --- install_opentofu.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 install_opentofu.sh diff --git a/install_opentofu.sh b/install_opentofu.sh new file mode 100755 index 0000000..8105fc8 --- /dev/null +++ b/install_opentofu.sh @@ -0,0 +1,14 @@ +# Download the installer script: +curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh +# Alternatively: wget --secure-protocol=TLSv1_2 --https-only https://get.opentofu.org/install-opentofu.sh -O install-opentofu.sh + +# Give it execution permissions: +chmod +x install-opentofu.sh + +# Please inspect the downloaded script + +# Run the installer: +./install-opentofu.sh --install-method deb + +# Remove the installer: +rm -f install-opentofu.sh \ No newline at end of file