Skip to content

Commit

Permalink
Update ubuntu-20.04-install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
shitwolfymakes authored Apr 10, 2022
1 parent 4575680 commit fab9353
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/installers/ubuntu-20.04-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ function install_arm_dev_env() {
sudo apt install docker-ce docker-ce-cli containerd.io -y
sudo usermod -aG docker arm

# install pycharm
sudo snap install pycharm-community --classic
# install pycharm community, if professional not installed already
if [[ -z $(snap find pycharm-professional) ]]; then
sudo snap install pycharm-community --classic
fi
}

function install_arm_live_env() {
Expand Down Expand Up @@ -172,7 +174,7 @@ function setup_syslog_rule() {
echo -e "${RED}ARM syslog rule found. Overwriting...${NC}"
sudo rm /etc/rsyslog.d/30-arm.conf
fi
sudo cp ./setup/30-arm.conf /etc/rsyslog.d/30-arm.conf
sudo cp /opt/arm/setup/30-arm.conf /etc/rsyslog.d/30-arm.conf
sudo chown arm:arm /etc/rsyslog.d/30-arm.conf
}

Expand Down

0 comments on commit fab9353

Please sign in to comment.