2021-02-20 21:29:45 +00:00
|
|
|
#!/bin/bash
|
2021-02-19 23:18:33 +00:00
|
|
|
|
2023-01-21 19:42:51 +00:00
|
|
|
# Copyright 2021-2023 Anthony Perkins
|
2021-02-19 23:18:33 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2022-08-15 10:43:49 +00:00
|
|
|
if [ "x$1" == "x--help" ] || [ "x$1" == "x-h" ] || [ "x$1" == "x-?" ]
|
|
|
|
then
|
|
|
|
echo "Usage: $0 [install_path] [bin_path]"
|
|
|
|
exit
|
2021-02-22 09:50:04 +00:00
|
|
|
fi
|
2022-08-15 10:43:49 +00:00
|
|
|
|
|
|
|
install_path=${1:-/opt/ansible}
|
|
|
|
bin_path=${2:-/usr/local/bin}
|
2022-07-18 09:37:09 +00:00
|
|
|
echo "Install path: $install_path"
|
|
|
|
echo "Bin path: $bin_path"
|
2022-08-15 10:43:49 +00:00
|
|
|
echo "Press RETURN to continue, or Ctrl-C to cancel."
|
|
|
|
read
|
2021-02-22 09:50:04 +00:00
|
|
|
|
2021-02-19 23:18:33 +00:00
|
|
|
pipinstall () {
|
2022-07-18 09:45:50 +00:00
|
|
|
if [ -r /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem ]; then
|
|
|
|
cafile="--cert /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem"
|
|
|
|
else
|
|
|
|
cafile=""
|
|
|
|
fi
|
|
|
|
./bin/pip $cafile install --upgrade $1
|
2021-02-19 23:18:33 +00:00
|
|
|
}
|
|
|
|
|
2021-02-19 23:42:10 +00:00
|
|
|
create_link () {
|
2022-08-15 10:43:49 +00:00
|
|
|
ln -sf "$install_path/bin/$1" "$bin_path/$1"
|
2021-02-19 23:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
py3cmd="$(command -v python3)"
|
|
|
|
if [ ! -x "$py3cmd" ]; then
|
|
|
|
echo "python3 not found"
|
2021-06-08 13:42:02 +00:00
|
|
|
exit 1
|
2021-02-19 23:42:10 +00:00
|
|
|
else
|
2022-07-18 09:37:09 +00:00
|
|
|
echo "Python3 found: $py3cmd"
|
2021-02-19 23:42:10 +00:00
|
|
|
fi
|
|
|
|
|
2021-06-09 10:39:24 +00:00
|
|
|
if ! $($py3cmd -c "import venv" 2> /dev/null); then
|
|
|
|
echo "Python3 venv module missing. Try installing python3-venv package."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! $($py3cmd -c "import ensurepip" 2> /dev/null); then
|
|
|
|
echo "Python3 ensurepip module missing. Try installing python3-venv package."
|
2021-05-26 14:39:56 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-03-22 22:39:11 +00:00
|
|
|
if [ ! -d "$install_path" ]; then
|
2021-02-22 09:50:04 +00:00
|
|
|
python3 -m venv "$install_path" || exit 1
|
2021-02-19 23:18:33 +00:00
|
|
|
fi
|
|
|
|
|
2021-02-22 09:50:04 +00:00
|
|
|
pushd "$install_path"
|
2021-02-19 23:18:33 +00:00
|
|
|
pipinstall wheel
|
2021-03-18 12:56:03 +00:00
|
|
|
pipinstall pip
|
2021-02-19 23:18:33 +00:00
|
|
|
pipinstall ansible
|
|
|
|
popd
|
2021-02-19 23:42:10 +00:00
|
|
|
|
2021-02-22 09:50:04 +00:00
|
|
|
if [ ! -d "$bin_path" ]; then
|
|
|
|
mkdir "$bin_path"
|
2021-02-20 21:29:45 +00:00
|
|
|
fi
|
|
|
|
|
2021-02-19 23:42:10 +00:00
|
|
|
for command in \
|
|
|
|
ansible \
|
|
|
|
ansible-config \
|
|
|
|
ansible-connection \
|
|
|
|
ansible-console \
|
|
|
|
ansible-doc \
|
|
|
|
ansible-galaxy \
|
|
|
|
ansible-inventory \
|
|
|
|
ansible-playbook \
|
|
|
|
ansible-pull \
|
|
|
|
ansible-test \
|
|
|
|
ansible-vault; do
|
|
|
|
create_link $command
|
|
|
|
done
|