From ef2008aa7eeb75847ba0d0737beb0421b6c0c5ff Mon Sep 17 00:00:00 2001 From: "Andrew F. Quijano" Date: Thu, 15 Aug 2024 07:55:47 -0400 Subject: [PATCH] few issues I found when running install on a random linx, squash with VM --- install.sh | 2 +- scripts/setup_postgres.sh | 2 +- setup_container.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 scripts/setup_postgres.sh mode change 100644 => 100755 setup_container.sh diff --git a/install.sh b/install.sh index 10dab18b..fafa1c81 100755 --- a/install.sh +++ b/install.sh @@ -41,7 +41,7 @@ fi curl -LJO https://github.com/panda-re/panda/releases/download/v1.8.23/pandare_22.04.deb mv *.deb /tmp -$SUDO apt install /tmp/pandare_22.04.deb +$SUDO apt-get -y install /tmp/pandare_22.04.deb rm /tmp/*.deb progress "Installed build dependencies" diff --git a/scripts/setup_postgres.sh b/scripts/setup_postgres.sh old mode 100644 new mode 100755 index a611cf1c..6177ea9a --- a/scripts/setup_postgres.sh +++ b/scripts/setup_postgres.sh @@ -39,4 +39,4 @@ echo "host all all 0.0.0.0/0 md5" >> $PG_HBA sed -i 's/scram-sha-256/md5/g' $PG_HBA # Restart PostgreSQL service -service postgresql restart \ No newline at end of file +service postgresql restart diff --git a/setup_container.sh b/setup_container.sh old mode 100644 new mode 100755