1 Commits

Author SHA1 Message Date
89f7506fa7 Incorporated changes for release 1.4.1 2026-02-24 20:50:13 -05:00
3 changed files with 48 additions and 0 deletions

View File

@@ -156,3 +156,9 @@ Changelog
- Removed the Raspberry Pi server setup from OpenDRS. Setting up
a Raspberry Pi as an OpenDRS server is easily accomplished by
the OpenDRS installer.
1.4.1 - 2024-06-18
- Updated the installer script (install.sh) to check for and install the
package supplying uuidgen. If uuidgen is not present, the mysql
user would be created with a blank password.

View File

@@ -158,3 +158,8 @@ Changelog
- Removed the Raspberry Pi server setup from OpenDRS. Setting up
a Raspberry Pi as an OpenDRS server is easily accomplished by
the OpenDRS installer.
1.4.1 - 2024-06-18
- Updated the installer script (install.sh) to check for and install the
package supplying uuidgen. If uuidgen is not present, the mysql
user would be created with a blank password.

View File

@@ -330,6 +330,43 @@ else
fi
fi
echo ""
echo " Checking for uuidgen installation..."
echo ""
if uuidgen 2>&1
then
echo ""
echo "uuidgen is installed. Continuing."
echo ""
else
echo ""
echo ""
echo "OpenDRS requires uuidgen, but it doesn't seem to be installed."
echo -n "Install it now? [Y/n]: "
read reqinstall
if [ "$reqinstall" = "N" -o "$reqinstall" = "n" ]
then
echo "OpenDRS requires uuidgen, but you have elected not to install it."
echo "Installation cannot continue."
exit 1
else
echo ""
echo "###################################################################"
echo ""
echo "Proceeding with uuidgen installation"
echo ""
echo "###################################################################"
sleep 3
apt-get install -y uuid-runtime
echo ""
echo "###################################################################"
echo ""
echo "Finished with uuidgen installation"
echo ""
echo "###################################################################"
sleep 3
fi
fi
echo ""
echo ""
echo "Finished checking for and installing prerequisites..."
echo ""