tools/setup.slackware

Tue, 31 Aug 2021 20:48:37 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 31 Aug 2021 20:48:37 +0200
changeset 774
92e1e8f175a2
parent 744
b8ccc85675a0
permissions
-rw-r--r--

Split batch, adjust mash step volume. In the duplicated log_brew handle the missing values. In save product, round the mash step sg to 4 decimals. In prod_edit, ingredients are stored as strings, not arrays. This triggered a memory corruption that only happened in rare circumstances. Don't fix mash step fields in the javascript, it is already done during load from the database. Calculation of the mash volume is rounded to 6 decimals. Enter mash step Brix/Plato value, the SG result is rounded to 4 decimals.

#!/bin/sh
#BLURB="Enable/disable the Brewery Management System at boot"
#
# System setup script for Slackware
#
#
T_PX=$1
TMP=/var/log/setup/tmp
if [ "$COLOR" = "on" -o -r $TMP/SeTcolor ]; then
  dialog --title "ENABLE BMS DAEMON AT BOOT?" --yesno \
 "BMS is a Brewery Management System running as a central controller \
  in a micro or home brewery. It can control remote devices used to \
  control fermentation, and log measured values." 10 70
  if [ $? = 0 ]; then
    mkdir -p /etc/rc.d/rc0.d /etc/rc.d/rc1.d /etc/rc.d/rc3.d /etc/rc.d/rc4.d /etc/rc.d/rc6
    ln -s /etc/rc.d/init.d/bmsd /etc/rc.d/rc0.d/K15bmsd
    ln -s /etc/rc.d/init.d/bmsd /etc/rc.d/rc1.d/K15bmsd
    ln -s /etc/rc.d/init.d/bmsd /etc/rc.d/rc3.d/S85bmsd
    ln -s /etc/rc.d/init.d/bmsd /etc/rc.d/rc4.d/S85bmsd
    ln -s /etc/rc.d/init.d/bmsd /etc/rc.d/rc6.d/K15bmsd
  else
    rm -f /etc/rc.d/rc{0,1,6}.d/K15bmsd /etc/rc.d/rc{3,4}.d/S85bmsd
  fi
fi

mercurial