| #!/bin/bash |
|
|
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| |
|
|
| |
| |
| |
| |
| |
|
|
| |
|
|
|
|
| VERSION="1.2.0" |
| gitreposubpath="PowerShell/PowerShell/master" |
| gitreposcriptroot="https://raw.githubusercontent.com/$gitreposubpath/tools" |
| thisinstallerdistro=redhat |
| repobased=true |
| gitscriptname="installpsh-redhat.psh" |
| powershellpackageid=powershell |
|
|
| echo |
| echo "*** PowerShell Development Environment Installer $VERSION for $thisinstallerdistro" |
| echo "*** Original script is at: $gitreposcriptroot/$gitscriptname" |
| echo |
| echo "*** Arguments used: $* " |
| echo |
|
|
| |
| trap ' |
| trap - INT # restore default INT handler |
| echo "Interrupted" |
| kill -s INT "$$" |
| ' INT |
|
|
| |
| lowercase(){ |
| echo "$1" | tr "[:upper:]" "[:lower:]" |
| } |
|
|
| OS=$(lowercase "$(uname)") |
| if [ "${OS}" == "windowsnt" ]; then |
| OS=windows |
| DistroBasedOn=windows |
| elif [ "${OS}" == "darwin" ]; then |
| OS=osx |
| DistroBasedOn=osx |
| else |
| OS=$(uname) |
| if [ "${OS}" == "SunOS" ] ; then |
| OS=solaris |
| DistroBasedOn=sunos |
| elif [ "${OS}" == "AIX" ] ; then |
| DistroBasedOn=aix |
| elif [ "${OS}" == "Linux" ] ; then |
| if [ -f /etc/redhat-release ] ; then |
| DistroBasedOn='redhat' |
| elif [ -f /etc/system-release ] ; then |
| DIST=$(sed s/\ release.*// < /etc/system-release) |
| if [[ $DIST == *"Amazon Linux"* ]] ; then |
| DistroBasedOn='amazonlinux' |
| else |
| DistroBasedOn='redhat' |
| fi |
| elif [ -f /etc/SuSE-release ] ; then |
| DistroBasedOn='suse' |
| elif [ -f /etc/mandrake-release ] ; then |
| DistroBasedOn='mandrake' |
| elif [ -f /etc/debian_version ] ; then |
| DistroBasedOn='debian' |
| fi |
| if [ -f /etc/UnitedLinux-release ] ; then |
| DIST="${DIST}[$( (tr "\n" ' ' | sed s/VERSION.*//) < /etc/UnitedLinux-release )]" |
| DistroBasedOn=unitedlinux |
| fi |
| OS=$(lowercase "$OS") |
| DistroBasedOn=$(lowercase "$DistroBasedOn") |
| fi |
| fi |
|
|
| if [ "$DistroBasedOn" != "$thisinstallerdistro" ]; then |
| echo "*** This installer is only for $thisinstallerdistro and you are running $DistroBasedOn, please run \"$gitreposcriptroot\install-powershell.sh\" to see if your distro is supported AND to auto-select the appropriate installer if it is." |
| exit 1 |
| fi |
|
|
| |
|
|
| |
| if [[ "${CI}" == "true" ]]; then |
| echo "Running on CI (as determined by env var CI set to true), skipping SUDO check." |
| set -- "$@" '-skip-sudo-check' |
| fi |
|
|
| SUDO='' |
| if (( EUID != 0 )); then |
| |
| if [[ ("'$*'" =~ skip-sudo-check) && ("$(whereis sudo)" == *'/'* && "$(sudo -nv 2>&1)" != 'Sorry, user'*) ]]; then |
| SUDO='sudo' |
| else |
| echo "ERROR: You must either be root or be able to use sudo" >&2 |
| |
| fi |
| fi |
|
|
| if [[ "'$*'" =~ preview ]] ; then |
| echo |
| echo "-preview was used, the latest preview release will be installed (side-by-side with your production release)" |
| powershellpackageid=powershell-preview |
| fi |
|
|
| release=$(curl https://api.github.com/repos/powershell/powershell/releases/latest | sed '/tag_name/!d' | sed s/\"tag_name\"://g | sed s/\"//g | sed s/v// | sed s/,//g | sed s/\ //g) |
| echo "*** Installing PowerShell for $DistroBasedOn..." |
| if ! hash curl 2>/dev/null; then |
| echo "curl not found, installing..." |
| $SUDO yum install -y curl |
| fi |
| release=$(curl https://api.github.com/repos/powershell/powershell/releases/latest | sed '/tag_name/!d' | sed s/\"tag_name\"://g | sed s/\"//g | sed s/v// | sed s/,//g | sed s/\ //g) |
|
|
| echo "*** Current version on git is: $release, repo version may differ slightly..." |
|
|
| echo "*** Setting up PowerShell repo..." |
| $SUDO curl https://packages.microsoft.com/config/rhel/7/prod.repo > /etc/yum.repos.d/microsoft.repo |
| $SUDO yum install -y ${powershellpackageid} |
|
|
| |
| pwsh -noprofile -c '"Congratulations! PowerShell is installed at $PSHOME. |
| Run `"pwsh`" to start a PowerShell session."' |
|
|
| success=$? |
|
|
| if [[ "$success" != 0 ]]; then |
| echo "ERROR: PowerShell failed to install!" >&2 |
| exit "$success" |
| fi |
|
|
| if [[ "'$*'" =~ includeide ]] ; then |
| echo |
| echo "*** Installing VS Code PowerShell IDE..." |
| echo "*** Setting up VS Code repo..." |
| $SUDO rpm --import https://packages.microsoft.com/keys/microsoft.asc |
| $SUDO sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo' |
| yum check-update |
| $SUDO yum install -y code |
|
|
| echo |
| echo "*** Installing VS Code PowerShell Extension" |
| code --install-extension ms-vscode.PowerShell |
| if [[ "'$*'" =~ -interactivetesting ]] ; then |
| echo "*** Loading test code in VS Code" |
| curl -O ./testpowershell.ps1 https://raw.githubusercontent.com/DarwinJS/CloudyWindowsAutomationCode/master/pshcoredevenv/testpowershell.ps1 |
| code ./testpowershell.ps1 |
| fi |
| fi |
|
|
| if [[ "$repobased" == true ]] ; then |
| echo "*** NOTE: Run your regular package manager update cycle to update PowerShell" |
| fi |
| echo "*** Install Complete" |
|
|