Sha256: ddbcdd055c2e92df4f079eec76fcbed48c3837b6fb28f3a5c5edc1efd6d80afa
Contents?: true
Size: 387 Bytes
Versions: 46
Compression:
Stored size: 387 Bytes
Contents
hostname=${1} check_flag=${2:-deploy} if [ "${check_flag}" = "check" ]; then # Check if python3 is installed if ssh -o StrictHostKeyChecking=no root@${hostname} 'python3 --version' 2>/dev/null; then echo 'OK' else echo 'Missing' fi else # Install python3 ssh -o StrictHostKeyChecking=no root@${hostname} 'apt install -y python3-pip' 2>/dev/null echo 'Installed' fi
Version data entries
46 entries across 46 versions & 1 rubygems