mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-16 10:25:12 +01:00
9 lines
195 B
Bash
Executable File
9 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$CONFIG_FILE" ]
|
|
then
|
|
/app/mikrotik-exporter -device $DEVICE -address $ADDRESS -user $USER -password $PASSWORD
|
|
else
|
|
/app/mikrotik-exporter -config-file $CONFIG_FILE
|
|
fi
|