summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-10-15 19:42:17 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-10-15 20:51:14 +0200
commitc89051fc253b08be2255b5bd5ea2695155bb4624 (patch)
treea86b9fe04493470959e595eda3c141a926ae9cdf /install
parent4aa0d978067e535b8fed94710a2893de900a4851 (diff)
downloadIshtar-c89051fc253b08be2255b5bd5ea2695155bb4624.tar.bz2
Ishtar-c89051fc253b08be2255b5bd5ea2695155bb4624.zip
🚀 Debian package: delete unecessary files, adapt and add install templates
Diffstat (limited to 'install')
-rw-r--r--install/extra_settings.py1
-rwxr-xr-xinstall/ishtar-install6
2 files changed, 4 insertions, 3 deletions
diff --git a/install/extra_settings.py b/install/extra_settings.py
new file mode 100644
index 000000000..df20af1bb
--- /dev/null
+++ b/install/extra_settings.py
@@ -0,0 +1 @@
+EXTRA_VERSION = 'debian'
diff --git a/install/ishtar-install b/install/ishtar-install
index 2e4ef9fc0..ced980082 100755
--- a/install/ishtar-install
+++ b/install/ishtar-install
@@ -331,7 +331,7 @@ EOF
# Run setup for each distro accordingly
case "$lsb_dist" in
ubuntu|debian|raspbian)
- if [ "$dist_version" != "buster" ] ; then
+ if [ "$dist_version" != "bullseye" ] ; then
echo ""
cecho r " Sorry this script cannot manage your version of Debian/Ubuntu."
echo ""
@@ -396,12 +396,12 @@ EOF
( set -x; $sh_c 'sleep 3; apt-get install -y -q uwsgi uwsgi-plugin-python3 nginx' )
fi
- if [ "$dist_version" == "buster" ]; then
+ if [ "$dist_version" == "bullseye" ]; then
if [ "$default_db" == '127.0.0.1' ]; then
echo "-------------------------------------------------------------------------------";
cecho y "Installing postgresql"
echo ""
- POSTGIS=postgresql-11-postgis-2.5
+ POSTGIS=postgresql-13-postgis-3
( set -x; $sh_c 'sleep 3; apt-get install -y -q postgresql postgresql-contrib '$POSTGIS' '$POSTGIS'-scripts' )
fi
echo "-------------------------------------------------------------------------------";