何をしていたのか
自分のLinux環境にaws-vaultを導入しようと思い、まずはlinuxbrewを公式HPを見てインストールしていたら失敗した。
実行していたコマンドは下記。
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
docs.brew.sh
対処法
yumのアップデートで解決。
sudo yum update
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
ubuntu環境では、build-essentialのインストールが失敗していたが、これもapt-getのアップデートで解決。
sudo apt-get update
sudo apt-get install build-essential curl file git
おわり