Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

README.md

Blame
  • runLogging 314 B
    #!/bin/bash
    
    if ! [ $(id -u) = 0 ]; then
       echo "This script needs to be run as root." >&2
       exit 1
    fi
    
    clear
    echo "Starting logsystem..."
    sudo -u $SUDO_USER touch ~/warnings.txt # Run as normal user, so the file is created in the right home directory
    glances -C glances.conf --export influxdb -q &
    echo "Done."