13 lines
170 B
Plaintext
13 lines
170 B
Plaintext
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
which mn-conf > /dev/null || {
|
|
echo "'mn-conf' cannot be found in \$PATH" >&2
|
|
exit 1
|
|
}
|
|
|
|
mn-conf set < /tmp/analytics_settings_local.conf
|
|
|
|
exit 0
|