Skip to content

Commit

Permalink
Merge pull request #124 from FREVA-CLINT/bug-fixes
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
antarcticrainforest authored May 29, 2024
2 parents 9fec66c + 033ebf7 commit 687adad
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 132 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ services:
{% endif %}
environment:
- EVALUATION_SYSTEM_CONFIG_FILE={{core_root_dir|regex_replace('^~', ansible_env.HOME)}}/freva/evaluation_system.conf
- LDAP_USER_DN={{web_ldap_user_dn}}
- LDAP_USER_PW={{web_ldap_user_pw}}
- DJANGO_SUPERUSER_PASSWORD={{ root_passwd }}
- FREVA_WEB_CONFIG_FILE={{web_config_file}}
- AUTH_LDAP_SERVER_URI={{web_auth_ldap_server_uri}}
Expand Down
2 changes: 1 addition & 1 deletion assets/share/freva/deployment/scripts/prepare-httpd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
if [ "$GID"];then
if [ "$GID" ];then
groupmod -g $GID www-data
usermod -g $GID www-data
fi
Expand Down
6 changes: 6 additions & 0 deletions docs/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ What's new
:maxdepth: 0
:titlesonly:

v2405.1.1
~~~~~~~~
* Minor bug fixing.



v2405.1.0
~~~~~~~~
* Bumped version of freva core to 2406.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/freva_deployment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
from urllib.request import urlretrieve

__version__ = "2405.1.0"
__version__ = "2405.1.1"

FREVA_PYTHON_VERSION = "3.11"
AVAILABLE_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
Expand Down
Loading

0 comments on commit 687adad

Please sign in to comment.