Bash Script: Para registrar o feed MQTT para o arquivo txt

0

Eu escrevi um pequeno script bash (datalogger.sh) para armazenar os dados mqtt no cartão SD dentro de uma máquina linux. O script bash é como abaixo: -

#!/bin/bash
fileNumber=1
temp=1 // flag to check and create new files
fileName="Data"
while [ $temp -le 1 ]
do
  if [ -f "/media/card/$fileName$fileNumber.txt" ]
  then
    ((fileNumber++))
  else
    touch "/media/card/$fileName$fileNumber.txt"
    mosquitto_sub -v -t "gateway/+/rx" | tee /media/card/$fileName$fileNumber.txt
    temp=2
  fi
done

O script bash funciona totalmente bem se eu o executar com o seguinte comando

./datalogger.sh

A partir da próxima etapa, usei o update-rc.d datalogger.sh defaults para que, na inicialização, o script bash seja executado automaticamente. No entanto, eu só recebo os arquivos de texto vazios. Alguém poderia me guiar, qual erro eu estou cometendo? Atenciosamente,

    
por Usman Asghar 16.08.2018 / 19:37

1 resposta

0

Os serviços geralmente usam scripts de wrapper como, por exemplo;

#!/bin/bash

# Provides: example
# Required-Start:
# Should-Start:
# Required-Stop:
# Default-Start: 2 3 5
# Default-Stop: 0 1 2 6
# Short-Description: example
# Description: example

#
# /etc/init.d/example
#

set -e
trap 'echo "ERROR: $BASH_SOURCE:$LINENO $BASH_COMMAND" >&2' ERR

NPID=$(pgrep -f example2.sh || true);

function start {
    if [ "$NPID" = "" ] ; then
        screen -S example -d -m bash -c '/root/example2.sh'
    else
        echo "example service is already running as $NPID";
    fi
}

function stop {
    if [ "$NPID" != "" ] ; then
        kill "$NPID";
    else
        echo "example service was not running" >&2;
    fi
}

function status {
    if [ "$NPID" = "" ]; then
        echo "example is not running";
    else
        echo "example is running with pid $NPID";
    fi
}

if [ "$1" = "start" ]; then
    start
elif [ "$1" = "stop" ]; then
    stop
elif [ "$1" = "restart" ]; then
    stop;
    start;
elif [ "$1" = "status" ]; then
    status
else
    echo " * Usage: /etc/init.d/example {start|status|stop|restart}";
fi
    
por 16.08.2018 / 21:22