Browse Source

reflexive install without idem_apt_install

master
pvincent 11 months ago
parent
commit
16dfadd472
  1. 3
      install.sh
  2. 2
      tools/debian_bash_upgrade

3
install.sh

@ -56,7 +56,8 @@ function install_host() {
fi
done
sudo /opt/debian_bash/tools/idem_apt_install "${REQUIRED_PKGS[@]}"
apt update
apt install -y "${REQUIRED_PKGS[@]}"
fi
}

2
tools/debian_bash_upgrade

@ -1,5 +1,7 @@
#!/bin/bash
set -Eeuo pipefail
if [[ -d /opt/debian-bash ]]; then
local_release=$(cat /opt/debian-bash/.semver_git_tag)
fi

Loading…
Cancel
Save