2017-11-16 01:51:52 +08:00
#!/bin/bash
2020-03-25 02:08:37 +08:00
# Copyright (c) Microsoft Corporation.
2018-10-01 17:58:14 +08:00
# Licensed under the MIT License.
2017-11-16 01:51:52 +08:00
#Companion code for the blog https://cloudywindows.com
#call this code direction from the web with:
#bash <(wget -O - https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/installpsh-amazonlinux.sh) ARGUMENTS
#bash <(curl -s https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/installpsh-amazonlinux.sh) <ARGUMENTS>
2019-05-11 06:34:27 +08:00
#Usage - if you do not have the ability to run scripts directly from the web,
2017-11-16 01:51:52 +08:00
# pull all files in this repo folder and execute, this script
# automatically prefers local copies of sub-scripts
#Completely automated install requires a root account or sudo with a password requirement
#Switches
2019-03-09 05:00:04 +08:00
# -includeide - ignored, as Amazon Linux does not have a desktop environment
# -interactivetesting - ignored, as Amazon Linux does not have a desktop environment
# -skip-sudo-check - use sudo without verifying its availability (hard to accurately do on some distros)
2019-05-11 06:34:27 +08:00
# -preview - installs the latest preview release of PowerShell side-by-side with any existing production releases
2017-11-16 01:51:52 +08:00
#gitrepo paths are overrideable to run from your own fork or branch for testing or private distribution
2018-06-26 02:44:43 +08:00
VERSION = "1.2.0"
2017-11-16 01:51:52 +08:00
gitreposubpath = "PowerShell/PowerShell/master"
gitreposcriptroot = " https://raw.githubusercontent.com/ $gitreposubpath /tools "
thisinstallerdistro = amazonlinux
repobased = false
gitscriptname = "installpsh-amazonlinux.psh"
2018-06-29 02:46:58 +08:00
pwshlink = /usr/bin/pwsh
2017-11-16 01:51:52 +08:00
echo
2019-05-11 06:34:27 +08:00
echo " *** PowerShell Development Environment Installer $VERSION for $thisinstallerdistro "
2017-11-16 01:51:52 +08:00
echo " *** Original script is at: $gitreposcriptroot / $gitscriptname "
echo
echo " *** Arguments used: $* "
echo
# Let's quit on interrupt of subcommands
trap '
trap - INT # restore default INT handler
echo "Interrupted"
kill -s INT " $$ "
' INT
2019-03-09 05:00:04 +08:00
#Verify The Installer Choice (for direct runs of this script)
2017-11-16 01:51:52 +08:00
lowercase( ) {
2019-03-09 05:00:04 +08:00
echo " $1 " | tr "[:upper:]" "[:lower:]"
2017-11-16 01:51:52 +08:00
}
2019-03-09 05:00:04 +08:00
OS = $( lowercase " $( uname) " )
2017-11-16 01:51:52 +08:00
if [ " ${ OS } " = = "windowsnt" ] ; then
OS = windows
DistroBasedOn = windows
elif [ " ${ OS } " = = "darwin" ] ; then
OS = osx
DistroBasedOn = osx
else
2019-03-09 05:00:04 +08:00
OS = $( uname)
2017-11-16 01:51:52 +08:00
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'
2019-06-22 04:36:11 +08:00
elif [ -f /etc/system-release ] ; then
DIST = $( sed s/\ release.*// < /etc/system-release)
if [ [ $DIST = = *"Amazon Linux" * ] ] ; then
DistroBasedOn = 'amazonlinux'
else
DistroBasedOn = 'redhat'
fi
2017-11-16 01:51:52 +08:00
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
2019-03-09 05:00:04 +08:00
DIST = " ${ DIST } [ $( ( tr "\n" ' ' | sed s/VERSION.*//) < /etc/UnitedLinux-release )] "
DistroBasedOn = unitedlinux
2017-11-16 01:51:52 +08:00
fi
2019-03-09 05:00:04 +08:00
OS = $( lowercase " $OS " )
DistroBasedOn = $( lowercase " $DistroBasedOn " )
2017-11-16 01:51:52 +08:00
fi
fi
if [ " $DistroBasedOn " != " $thisinstallerdistro " ] ; then
2019-03-09 05:00:04 +08:00
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
2017-11-16 01:51:52 +08:00
fi
## Check requirements and prerequisites
2018-06-26 02:44:43 +08:00
#Check for sudo if not root
if [ [ " ${ CI } " = = "true" ] ] ; then
echo "Running on CI (as determined by env var CI set to true), skipping SUDO check."
set -- " $@ " '-skip-sudo-check'
2017-11-16 01:51:52 +08:00
fi
2018-06-26 02:44:43 +08:00
SUDO = ''
2019-03-09 05:00:04 +08:00
if ( ( EUID != 0 ) ) ; then
2018-06-26 02:44:43 +08:00
#Check that sudo is available
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
#exit 5
2017-11-16 01:51:52 +08:00
fi
fi
#Collect any variation details if required for this distro
#END Verify The Installer Choice
echo
2019-05-11 06:34:27 +08:00
echo "*** Installing prerequisites for PowerShell..."
2017-11-16 01:51:52 +08:00
$SUDO yum install -y \
curl \
libunwind \
libicu \
libcurl \
openssl \
libuuid.x86_64 \
2018-10-25 01:10:33 +08:00
tar \
gzip \
2017-11-16 01:51:52 +08:00
&& yum clean all
##END Check requirements and prerequisites
echo
2019-05-11 06:34:27 +08:00
echo " *** Installing PowerShell for $DistroBasedOn ... "
2018-06-26 02:44:43 +08:00
2018-06-29 02:46:58 +08:00
echo "ATTENTION: As of version 1.2.0 this script no longer uses pre-releases unless the '-preview' switch is used"
2018-06-26 02:44:43 +08:00
2018-06-29 02:46:58 +08:00
if [ [ " ' $* ' " = ~ preview ] ] ; then
2018-06-26 02:44:43 +08:00
echo
2018-06-29 02:46:58 +08:00
echo "-preview was used, the latest preview release will be installed (side-by-side with your production release)"
2019-03-09 05:00:04 +08:00
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)
2018-06-29 02:46:58 +08:00
pwshlink = /usr/bin/pwsh-preview
2018-06-26 02:44:43 +08:00
else
2018-06-29 02:46:58 +08:00
echo "Finding the latest production release"
2018-06-26 02:44:43 +08:00
release = $( curl https://api.github.com/repos/PowerShell/PowerShell/releases | grep -Po '"tag_name":(\d*?,|.*?[^\\]",)' | grep -Po '\d+.\d+.\d+[\da-z.-]*' | grep -v '[a-z]' | sort | tail -n1)
2018-10-01 17:58:14 +08:00
fi
2017-11-16 01:51:52 +08:00
#DIRECT DOWNLOAD
package = powershell-${ release } -linux-x64.tar.gz
downloadurl = https://github.com/PowerShell/PowerShell/releases/download/v$release /$package
echo " Destination file: $package "
echo " Source URL: $downloadurl "
curl -L -o " $package " " $downloadurl "
if [ [ ! -r " $package " ] ] ; then
echo " ERROR: $package failed to download! Aborting... " >& 2
exit 1
fi
echo " Installing PowerShell to /opt/microsoft/powershell/ $release in overwrite mode "
## Create the target folder where powershell will be placed
2019-03-09 05:00:04 +08:00
$SUDO mkdir -p " /opt/microsoft/powershell/ $release "
2017-11-16 01:51:52 +08:00
## Expand powershell to the target folder
2019-03-09 05:00:04 +08:00
$SUDO tar zxf " $package " -C " /opt/microsoft/powershell/ $release "
2017-11-16 01:51:52 +08:00
## Change the mode of 'pwsh' to 'rwxr-xr-x' to allow execution
2019-03-09 05:00:04 +08:00
$SUDO chmod 755 " /opt/microsoft/powershell/ $release /pwsh "
2017-11-16 01:51:52 +08:00
## Create the symbolic link that points to powershell
2019-03-09 05:00:04 +08:00
$SUDO ln -sfn " /opt/microsoft/powershell/ $release /pwsh " $pwshlink
2017-11-16 01:51:52 +08:00
## Add the symbolic link path to /etc/shells
if [ ! -f /etc/shells ] ; then
echo $pwshlink | $SUDO tee /etc/shells ;
else
grep -q " ^ ${ pwshlink } $" /etc/shells || echo $pwshlink | $SUDO tee --append /etc/shells > /dev/null ;
fi
## Remove the downloaded package file
2019-03-09 05:00:04 +08:00
rm -f " $package "
2017-11-16 01:51:52 +08:00
2019-03-09 05:00:04 +08:00
# shellcheck disable=SC2016
2017-11-16 01:51:52 +08:00
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 "Amazon Linux does not have a desktop manager to support vscode, ignoring -includeide"
fi
if [ [ " ' $* ' " = ~ -interactivetesting ] ] ; then
echo
2018-06-26 02:44:43 +08:00
echo "Amazon Linux does not have a desktop manager to support vscode, ignoring -interactivetesting"
2017-11-16 01:51:52 +08:00
fi
if [ [ " $repobased " = = true ] ] ; then
2019-05-11 06:34:27 +08:00
echo "*** NOTE: Run your regular package manager update cycle to update PowerShell"
2017-11-16 01:51:52 +08:00
else
2019-05-11 06:34:27 +08:00
echo "*** NOTE: Re-run this script to update PowerShell"
2017-11-16 01:51:52 +08:00
fi
echo "*** Install Complete"