mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 03:07:51 -05:00
Signed-off-by: ollevche <ollevche@gmail.com> Signed-off-by: Oleksandr Levchenkov <ollevche@gmail.com>
14 lines
486 B
Bash
14 lines
486 B
Bash
# 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 |