infra: Install some custom deb packages.

Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
Tim 'mithro' Ansell 2019-02-04 00:21:32 +11:00
parent 1991669e8c
commit fd40839830
1 changed files with 16 additions and 0 deletions

View File

@ -34,3 +34,19 @@ sudo apt-get install -y \
echo "----------------------------------------"
(
cd /tmp
# Download ptyget to enable ptybandage.
wget https://storage.googleapis.com/prjxray-deps-debs/ptyget_6_amd64.deb
sudo dpkg --install ptyget_6_amd64.deb
which ptybandage
ptybandage --help || true
# Upgrade pstree to support the -T flag.
wget https://storage.googleapis.com/prjxray-deps-debs/psmisc_23.2-1_amd64.deb
sudo dpkg --install psmisc_23.2-1_amd64.deb
which pstree
pstree --help || true
)
echo "----------------------------------------"