Skip to content

Commit

Permalink
bump version to 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cremesk committed Dec 6, 2024
1 parent f332e6d commit cf4ac59
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Freifunk Dresden: ffdd-server - Changelog
`current version:` ![calver](https://img.shields.io/github/v/release/freifunk-dresden/ffdd-server?include_prereleases)

## version 1.6.2

This release contains a fix **for Debian 11 (bullseye)**. Some required packages are missing from the saltstack installation and must be installed manually.
These are: `python3-yaml`, `python3-msgpack`, `python3-distro`, `python3-tornado`, `python3-looseversion`, `python3-packaging` and `python3-jinja2`.
The problem seems to have arisen with the switch to the new salt repo in Version [T_RELEASE_v1.5.1rc1](https://github.com/Freifunk-Dresden/ffdd-server/releases/tag/T_RELEASE_v1.5.1rc1).
(new ffdd-server installations with Debian 11 and all other versions do not seem to be affected by this problem)

To fix your current installation you just need to install the mentioned packages as follows:
`apt -y install python3-yaml python3-msgpack python3-distro python3-tornado python3-looseversion python3-packaging python3-jinja2`.
After installing the packages, `freifunk-call` should be executable again.

- fix debian 11 installation
- update digitalcourage dns forwarder also in default uci config
- add config option to disable the speedtest plugin
- revision/optimization of some scripts

## version 1.6.1
- update digitalcourage dns forwarder
- update bind (dns) zonefiles
Expand Down
2 changes: 1 addition & 1 deletion init_server.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
#version="1.6.1"
#version="1.6.2"

# check if user has set the environment variable REV, then use this
REV="T_RELEASE_latest" # means git rev/branch/tag
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ CUSTOM_INSTALL_DIR="$(uci -qX get ffdd.sys.install_dir)"
[ -n "$CUSTOM_INSTALL_DIR" ] && [ "$CUSTOM_INSTALL_DIR" != "$INSTALL_DIR" ] && INSTALL_DIR="$CUSTOM_INSTALL_DIR"


if [ "$(id -u)" -ne 0 ]; then printf 'Please run as root!\n'; exit 1 ; fi

[ -d "$INSTALL_DIR" ] && rm -rf "$INSTALL_DIR"
git clone "$REPO_URL" "$INSTALL_DIR"
cd "$INSTALL_DIR" && git checkout "$REV"
Expand Down

0 comments on commit cf4ac59

Please sign in to comment.