342 lines
13 KiB
Bash
Executable File
342 lines
13 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
MACHINE_LAUNCH_DIR=/tmp
|
|
export HOME="${HOME:-/root}"
|
|
|
|
CONDA_INSTALL_PREFIX=/opt/conda
|
|
CONDA_INSTALLER_VERSION=23.1.0-1
|
|
CONDA_INSTALLER="https://github.com/conda-forge/miniforge/releases/download/${CONDA_INSTALLER_VERSION}/Miniforge3-${CONDA_INSTALLER_VERSION}-Linux-x86_64.sh"
|
|
CONDA_CMD="conda" # some installers install mamba or micromamba
|
|
CONDA_ENV_NAME="firesim"
|
|
CONDA_SHELL_TYPE=bash
|
|
|
|
DRY_RUN_OPTION=""
|
|
DRY_RUN_ECHO=()
|
|
REINSTALL_CONDA=0
|
|
USE_LIBMAMBA_SOLVER=0
|
|
|
|
usage()
|
|
{
|
|
echo "Usage: $0 [options]"
|
|
echo
|
|
echo "Options:"
|
|
echo "[--help] List this help"
|
|
echo "[--prefix <prefix>] Install prefix for conda. Defaults to $CONDA_INSTALL_PREFIX."
|
|
echo " If <prefix>/bin/conda already exists, it will be used and install is skipped."
|
|
echo "[--env <name>] Name of environment to create for conda. Defaults to '$CONDA_ENV_NAME'."
|
|
echo "[--dry-run] Pass-through to all conda commands and only print other commands."
|
|
echo " NOTE: --dry-run will still install conda to --prefix"
|
|
echo "[--reinstall-conda] Repairs a broken base environment by reinstalling."
|
|
echo " NOTE: will only reinstall conda and exit without modifying the --env"
|
|
echo "[--shell] Run initialization for a specific shell. Defaults to $CONDA_SHELL_TYPE."
|
|
echo "[--use-libmamba-solver] Use experimental libmamba solver for conda."
|
|
echo
|
|
echo "Examples:"
|
|
echo " % $0"
|
|
echo " Install into default system-wide prefix (using sudo if needed) and add install to system-wide /etc/profile.d"
|
|
echo " % $0 --prefix ~/conda --env my_custom_env"
|
|
echo " Install into $HOME/conda and add install to $CONDA_SHELL_TYPE init files (i.e. ~/.*rc)"
|
|
echo " % $0 --prefix \${CONDA_EXE%/bin/conda} --env my_custom_env"
|
|
echo " Create my_custom_env in existing conda install"
|
|
echo " NOTES:"
|
|
echo " * CONDA_EXE is set in your environment when you activate a conda env"
|
|
echo " * my_custom_env will not be activated by default at login see /etc/profile.d/conda.sh & $CONDA_SHELL_TYPE init files (i.e. ~/.*rc)"
|
|
}
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
--help)
|
|
usage
|
|
exit 1
|
|
;;
|
|
--prefix)
|
|
shift
|
|
CONDA_INSTALL_PREFIX="$1"
|
|
shift
|
|
;;
|
|
--env)
|
|
shift
|
|
CONDA_ENV_NAME="$1"
|
|
shift
|
|
if [[ "$CONDA_ENV_NAME" == "base" ]]; then
|
|
echo "::ERROR:: best practice is to install into a named environment, not base. Aborting."
|
|
exit 1
|
|
fi
|
|
;;
|
|
--dry-run)
|
|
shift
|
|
DRY_RUN_OPTION="--dry-run"
|
|
DRY_RUN_ECHO=(echo "Would Run:")
|
|
;;
|
|
--reinstall-conda)
|
|
shift
|
|
REINSTALL_CONDA=1
|
|
;;
|
|
--shell)
|
|
shift
|
|
CONDA_SHELL_TYPE="$1"
|
|
shift
|
|
;;
|
|
--use-libmamba-solver)
|
|
shift
|
|
USE_LIBMAMBA_SOLVER=1
|
|
;;
|
|
*)
|
|
echo "Invalid Argument: $1"
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ $REINSTALL_CONDA -eq 1 && -n "$DRY_RUN_OPTION" ]]; then
|
|
echo "::ERROR:: --dry-run and --reinstall-conda are mutually exclusive. Pick one or the other."
|
|
fi
|
|
|
|
set -ex
|
|
set -o pipefail
|
|
|
|
{
|
|
|
|
# uname options are not portable so do what https://www.gnu.org/software/coreutils/faq/coreutils-faq.html#uname-is-system-specific
|
|
# suggests and iteratively probe the system type
|
|
if ! type uname >&/dev/null; then
|
|
echo "::ERROR:: need 'uname' command available to determine if we support this sytem"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$(uname)" != "Linux" ]]; then
|
|
echo "::ERROR:: $0 only supports 'Linux' not '$(uname)'"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$(uname -mo)" != "x86_64 GNU/Linux" ]]; then
|
|
echo "::ERROR:: $0 only supports 'x86_64 GNU/Linux' not '$(uname -io)'"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -r /etc/os-release ]]; then
|
|
echo "::ERROR:: $0 depends on /etc/os-release for distro-specific setup and it doesn't exist here"
|
|
exit 1
|
|
fi
|
|
|
|
OS_FLAVOR=$(grep '^ID=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
|
|
|
echo "machine launch script started" > "$MACHINE_LAUNCH_DIR/machine-launchstatus"
|
|
chmod ugo+r "$MACHINE_LAUNCH_DIR/machine-launchstatus"
|
|
|
|
# platform-specific setup (pre-conda install)
|
|
case "$OS_FLAVOR" in
|
|
ubuntu)
|
|
;;
|
|
centos)
|
|
;;
|
|
amzn)
|
|
;;
|
|
debian)
|
|
;;
|
|
*)
|
|
echo "::ERROR:: Unknown OS flavor '$OS_FLAVOR'. Unable to do platform-specific setup."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# everything else is platform-agnostic and could easily be expanded to Windows and/or OSX
|
|
|
|
SUDO=""
|
|
prefix_parent=$(dirname "$CONDA_INSTALL_PREFIX")
|
|
if [[ ! -e "$prefix_parent" ]]; then
|
|
mkdir -p "$prefix_parent" || SUDO=sudo
|
|
elif [[ ! -w "$prefix_parent" ]]; then
|
|
SUDO=sudo
|
|
fi
|
|
|
|
if [[ -n "$SUDO" ]]; then
|
|
echo "::INFO:: using 'sudo' to install conda"
|
|
# ensure files are read-execute for everyone
|
|
umask 022
|
|
fi
|
|
|
|
if [[ -n "$SUDO" || "$(id -u)" == 0 ]]; then
|
|
INSTALL_TYPE=system
|
|
else
|
|
INSTALL_TYPE=user
|
|
fi
|
|
|
|
# to enable use of sudo and avoid modifying 'secure_path' in /etc/sudoers, we specify the full path to conda
|
|
CONDA_EXE="${CONDA_INSTALL_PREFIX}/bin/$CONDA_CMD"
|
|
|
|
if [[ -x "$CONDA_EXE" && $REINSTALL_CONDA -eq 0 ]]; then
|
|
echo "::INFO:: '$CONDA_EXE' already exists, skipping conda install"
|
|
else
|
|
wget -O install_conda.sh "$CONDA_INSTALLER" || curl -fsSLo install_conda.sh "$CONDA_INSTALLER"
|
|
if [[ $REINSTALL_CONDA -eq 1 ]]; then
|
|
conda_install_extra="-u"
|
|
echo "::INFO:: RE-installing conda to '$CONDA_INSTALL_PREFIX'"
|
|
else
|
|
conda_install_extra=""
|
|
echo "::INFO:: installing conda to '$CONDA_INSTALL_PREFIX'"
|
|
fi
|
|
# -b for non-interactive install
|
|
$SUDO bash ./install_conda.sh -b -p "$CONDA_INSTALL_PREFIX" $conda_install_extra
|
|
rm ./install_conda.sh
|
|
|
|
# get most up-to-date conda version
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "$CONDA_EXE" update $DRY_RUN_OPTION -y -n base -c conda-forge conda
|
|
|
|
# see https://conda-forge.org/docs/user/tipsandtricks.html#multiple-channels
|
|
# for more information on strict channel_priority
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "$CONDA_EXE" config --system --set channel_priority flexible
|
|
# by default, don't mess with people's PS1, I personally find it annoying
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "$CONDA_EXE" config --system --set changeps1 false
|
|
# don't automatically activate the 'base' environment when initializing shells
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "$CONDA_EXE" config --system --set auto_activate_base false
|
|
# automatically use the ucb-bar channel for specific packages https://anaconda.org/ucb-bar/repo
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "$CONDA_EXE" config --system --add channels ucb-bar
|
|
|
|
# conda-build is a special case and must always be installed into the base environment
|
|
$SUDO "$CONDA_EXE" install $DRY_RUN_OPTION -y -n base conda-build
|
|
|
|
if [[ $USE_LIBMAMBA_SOLVER -eq 1 ]]; then
|
|
# conda-libmamba-solver is a special case and must always be installed into the base environment
|
|
# see https://www.anaconda.com/blog/a-faster-conda-for-a-growing-community
|
|
$SUDO "$CONDA_EXE" install $DRY_RUN_OPTION -y -n base conda-libmamba-solver
|
|
# Use the fast solver by default
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "$CONDA_EXE" config --system --set solver libmamba
|
|
fi
|
|
|
|
conda_init_extra_args=()
|
|
if [[ "$INSTALL_TYPE" == system ]]; then
|
|
# if we're installing into a root-owned directory using sudo, or we're already root
|
|
# initialize conda in the system-wide rcfiles
|
|
conda_init_extra_args=(--no-user --system)
|
|
fi
|
|
# run conda-init and look at its output to insert 'conda activate $CONDA_ENV_NAME' into the
|
|
# block that conda-init will update if ever conda is installed to a different prefix and
|
|
# this is rerun.
|
|
$SUDO "${CONDA_EXE}" init $DRY_RUN_OPTION "${conda_init_extra_args[@]}" $CONDA_SHELL_TYPE 2>&1 | \
|
|
tee >(grep '^modified' | grep -v "$CONDA_INSTALL_PREFIX" | awk '{print $NF}' | \
|
|
"${DRY_RUN_ECHO[@]}" $SUDO xargs -r sed -i -e "/<<< conda initialize <<</iconda activate $CONDA_ENV_NAME")
|
|
|
|
if [[ $REINSTALL_CONDA -eq 1 ]]; then
|
|
echo "::INFO:: Done reinstalling conda. Exiting"
|
|
exit 0
|
|
fi
|
|
fi
|
|
|
|
# https://conda-forge.org/feedstock-outputs/
|
|
# filterable list of all conda-forge packages
|
|
# https://conda-forge.org/#contribute
|
|
# instructions on adding a recipe
|
|
# https://docs.conda.io/projects/conda/en/latest/user-guide/concepts/pkg-specs.html#package-match-specifications
|
|
# documentation on package_spec syntax for constraining versions
|
|
CONDA_PACKAGE_SPECS=()
|
|
|
|
# minimal specs to allow cloning of firesim repo and access to the manager
|
|
CONDA_PACKAGE_SPECS+=(
|
|
bash-completion \
|
|
ca-certificates \
|
|
mosh \
|
|
vim \
|
|
git \
|
|
screen \
|
|
argcomplete \
|
|
expect \
|
|
"python>=3.8" \
|
|
boto3 \
|
|
pytz \
|
|
mypy-boto3-s3 \
|
|
mypy_boto3_ec2 \
|
|
"azure-mgmt-resource>=18" \
|
|
azure-identity \
|
|
azure-mgmt-compute \
|
|
azure-mgmt-network \
|
|
fsspec \
|
|
"s3fs==0.4.2" \
|
|
"cryptography<41" \
|
|
)
|
|
|
|
if [[ "$CONDA_ENV_NAME" == "base" ]]; then
|
|
# NOTE: arg parsing disallows installing to base but this logic is correct if we ever change
|
|
CONDA_SUBCOMMAND=install
|
|
CONDA_ENV_BIN="${CONDA_INSTALL_PREFIX}/bin"
|
|
else
|
|
CONDA_ENV_BIN="${CONDA_INSTALL_PREFIX}/envs/${CONDA_ENV_NAME}/bin"
|
|
if [[ -d "${CONDA_INSTALL_PREFIX}/envs/${CONDA_ENV_NAME}" ]]; then
|
|
# 'create' clobbers the existing environment and doesn't leave a revision entry in
|
|
# `conda list --revisions`, so use install instead
|
|
CONDA_SUBCOMMAND=install
|
|
else
|
|
CONDA_SUBCOMMAND=create
|
|
fi
|
|
fi
|
|
|
|
# to enable use of sudo and avoid modifying 'secure_path' in /etc/sudoers, we specify the full path to conda
|
|
$SUDO "${CONDA_EXE}" "$CONDA_SUBCOMMAND" $DRY_RUN_OPTION -n "$CONDA_ENV_NAME" -c conda-forge -y "${CONDA_PACKAGE_SPECS[@]}"
|
|
|
|
# to enable use of sudo and avoid modifying 'secure_path' in /etc/sudoers, we specify the full path to pip
|
|
CONDA_PIP_EXE="${CONDA_ENV_BIN}/pip"
|
|
|
|
# Install python packages using pip that are not available from conda
|
|
#
|
|
# Installing things with pip is possible. However, to get
|
|
# the most complete solution to all dependencies, you should
|
|
# prefer creating the environment with a single invocation of
|
|
# conda
|
|
PIP_PKGS=( \
|
|
"fab-classic>=1.19.2" \
|
|
azure-mgmt-resourcegraph \
|
|
)
|
|
if [[ -n "$PIP_PKGS[*]" ]]; then
|
|
"${DRY_RUN_ECHO[@]}" $SUDO "${CONDA_PIP_EXE}" install "${PIP_PKGS[@]}"
|
|
fi
|
|
|
|
argcomplete_extra_args=()
|
|
if [[ "$INSTALL_TYPE" == system ]]; then
|
|
BASH_COMPLETION_COMPAT_DIR="${CONDA_ENV_BIN}/../etc/bash_completion.d"
|
|
"${DRY_RUN_ECHO[@]}" $SUDO mkdir -p "${BASH_COMPLETION_COMPAT_DIR}"
|
|
argcomplete_extra_args=( --dest "${BASH_COMPLETION_COMPAT_DIR}" )
|
|
|
|
else
|
|
# if we aren't installing into a system directory, then initialize argcomplete
|
|
# with --user so that it goes into the home directory
|
|
argcomplete_extra_args=( --user )
|
|
fi
|
|
set +o pipefail
|
|
"${DRY_RUN_ECHO[@]}" yes | $SUDO "${CONDA_ENV_BIN}/activate-global-python-argcomplete" "${argcomplete_extra_args[@]}"
|
|
set -o pipefail
|
|
|
|
# emergency fix for buildroot open files limit issue:
|
|
if [[ "$INSTALL_TYPE" == system ]]; then
|
|
"${DRY_RUN_ECHO[@]}" echo "* hard nofile 16384" | $SUDO tee --append /etc/security/limits.conf
|
|
else
|
|
"${DRY_RUN_ECHO[@]}" echo "::WARN:: Unable to set open files limit without sudo."
|
|
fi
|
|
|
|
# final platform-specific setup
|
|
case "$OS_FLAVOR" in
|
|
ubuntu)
|
|
;;
|
|
centos)
|
|
;;
|
|
amzn)
|
|
echo "::INFO:: using 'sudo' to install NICE DCV"
|
|
wget https://raw.githubusercontent.com/aws-samples/amazon-ec2-nice-dcv-samples/5439e401d3aaf394588f1029e0ec7904d8cacc8f/scripts/AmazonLinux2-user-data.sh
|
|
chmod +x AmazonLinux2-user-data.sh
|
|
sudo ./AmazonLinux2-user-data.sh
|
|
echo "firesim" | sudo passwd ec2-user --stdin # default password is 'firesim'
|
|
;;
|
|
debian)
|
|
;;
|
|
*)
|
|
echo "::ERROR:: Unknown OS flavor '$OS_FLAVOR'. Unable to do platform-specific setup."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
} 2>&1 | tee "$MACHINE_LAUNCH_DIR/machine-launchstatus.log"
|
|
chmod ugo+r "$MACHINE_LAUNCH_DIR/machine-launchstatus.log"
|
|
|
|
echo "machine launch script completed" >> "$MACHINE_LAUNCH_DIR/machine-launchstatus"
|