mirror of
https://github.com/tusc/ntopng-udm.git
synced 2026-02-03 13:53:23 +00:00
14 lines
225 B
Bash
14 lines
225 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
if [ -z "$DISABLE_REDIS" ]; then
|
|
/etc/init.d/redis-server start
|
|
fi
|
|
|
|
if [ -s /etc/GeoIP.conf ]
|
|
then
|
|
echo 'Please wait, geoipupdate is running'
|
|
/usr/bin/geoipupdate
|
|
fi
|
|
|
|
ntopng /etc/ntopng/ntopng.conf |