diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-04-30 18:15:24 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-11-04 18:49:51 +0100 |
commit | e513a77df0ff2d921333254ebe7bb4706e5fc773 (patch) | |
tree | 04de0cc6623395b82bf7e0089d1c88ddb4bd5be0 | |
parent | 4adb5e070672fdd1230b2f8a4d120e3751ddb32c (diff) | |
download | Ishtar-e513a77df0ff2d921333254ebe7bb4706e5fc773.tar.bz2 Ishtar-e513a77df0ff2d921333254ebe7bb4706e5fc773.zip |
Debian: fix bad link and bad dir init
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/python3-django-ishtar.links | 2 | ||||
-rw-r--r-- | debian/python3-django-ishtar.postinst | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index efcdc9787..e6313ed3d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,13 @@ +python-django-ishtar (3.0.5-2) UNRELEASED; urgency=low + + * Fix bad link and bad init + + -- Étienne Loks <etienne.loks@iggdrasil.net> Thu, 30 Apr 2020 18:15:00 +0200 python-django-ishtar (3.0.5-1) UNRELEASED; urgency=low * New upstream version cf. CHANGES.md + -- Étienne Loks <etienne.loks@iggdrasil.net> Sat, 28 Mar 2020 15:32:00 +0200 python-django-ishtar (3.0.4-1) UNRELEASED; urgency=low * New upstream version cf. CHANGES.md diff --git a/debian/python3-django-ishtar.links b/debian/python3-django-ishtar.links index 7de313a78..0dc44a33e 100644 --- a/debian/python3-django-ishtar.links +++ b/debian/python3-django-ishtar.links @@ -4,4 +4,4 @@ usr/share/python3-django-ishtar/fixtures srv/ishtar/fixtures usr/share/python3-django-ishtar/locale srv/ishtar/locale usr/share/python3-django-ishtar/example_project srv/ishtar/example_project usr/share/python3-django-ishtar/install srv/ishtar/install -usr/share/python3-django-ishtar/install/extra_settings.py etc/ishtar +usr/share/python3-django-ishtar/install/extra_settings.py etc/ishtar/extra_settings.py diff --git a/debian/python3-django-ishtar.postinst b/debian/python3-django-ishtar.postinst index 6dd3f99a0..40e77e791 100644 --- a/debian/python3-django-ishtar.postinst +++ b/debian/python3-django-ishtar.postinst @@ -26,7 +26,7 @@ INSTANCES_FILE=$CONFIG_PATH/instances case "$1" in configure) - mkdir -p $CONFIG_PATH + mkdir -p $CONFIG_PATH 2> /dev/null if [ ! -f $CONFIG_PATH/config ]; then cp /usr/share/python3-django-ishtar/install/config.template $CONFIG_PATH/config ; fi |