tools/setup.slackware

Sun, 23 May 2021 16:41:35 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 23 May 2021 16:41:35 +0200
changeset 752
f68e3bbc1ada
parent 744
b8ccc85675a0
permissions
-rw-r--r--

Fermentables, hops, miscs and yeast now have tests against the added moment with the brewing stage. Added to inventory edit rows, delete rows, and pick choices for the moment to add or edit. Some more popups to explain certain blocks.

#!/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