Skip to content

Commit

Permalink
Fix for Terraform provisioning tinkerbell#103
Browse files Browse the repository at this point in the history
  • Loading branch information
Cbkhare committed Aug 17, 2020
1 parent 1aebf3e commit e9caff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/terraform/install_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ YUM_CONFIG_MGR="yum-config-manager"
WHICH_YUM=$(which $YUM)
WHICH_APT=$(which $APT)
YUM_INSTALL="$YUM install"
APT_INSTALL="$APT install"
PIP3_INSTALL="$PIP install"
APT_INSTALL="$APT install"
PIP3_INSTALL="$PIP3 install"
declare -a YUM_LIST=("https://download.docker.com/linux/centos/7/x86_64/stable/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm"
"docker-ce"
"docker-ce-cli"
Expand All @@ -27,7 +27,7 @@ update_yum() (
)

update_apt() (
$APT update
$APT update
$APT upgrade -y
)

Expand Down

0 comments on commit e9caff8

Please sign in to comment.