From ae91bb580c5ebfb88af641a1a42d96361d205aab Mon Sep 17 00:00:00 2001 From: Alexey Rogachevskiy Date: Wed, 26 Feb 2020 16:17:19 +0300 Subject: [PATCH] scripts: Clean up unneeded scripts --- scripts/installGuestAdditions.sh | 6 ------ scripts/installRos.sh | 9 --------- scripts/installRosUser.sh | 4 ---- scripts/installVsCode.sh | 11 ----------- 4 files changed, 30 deletions(-) delete mode 100644 scripts/installGuestAdditions.sh delete mode 100644 scripts/installRos.sh delete mode 100644 scripts/installRosUser.sh delete mode 100644 scripts/installVsCode.sh diff --git a/scripts/installGuestAdditions.sh b/scripts/installGuestAdditions.sh deleted file mode 100644 index ae357a8..0000000 --- a/scripts/installGuestAdditions.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -sudo apt update -sudo apt install -y build-essential make perl -# virtualbox is still terrible, let's target vmware -sudo apt install -y open-vm-tools diff --git a/scripts/installRos.sh b/scripts/installRos.sh deleted file mode 100644 index 1d2f6ff..0000000 --- a/scripts/installRos.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' -sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 -sudo apt update -sudo apt install -y python-rosinstall python-rosinstall-generator python-wstool build-essential -sudo apt install -y ros-melodic-desktop - -sudo rosdep init diff --git a/scripts/installRosUser.sh b/scripts/installRosUser.sh deleted file mode 100644 index 0d0a442..0000000 --- a/scripts/installRosUser.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -rosdep update -echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc diff --git a/scripts/installVsCode.sh b/scripts/installVsCode.sh deleted file mode 100644 index 4910877..0000000 --- a/scripts/installVsCode.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -sudo apt update -sudo apt install -y curl -curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg -sudo install -o root -g root -m 644 packages.microsoft.gpg /usr/share/keyrings/ -sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' - -sudo apt-get install -y apt-transport-https -sudo apt-get update -sudo apt-get install -y code