
Change-Id: Ia551544b1c68fda19a7eac505251ca1146b355d2 (cherry picked from commit 5e295d177ff135d9824cefb1d44c97820611cf01)
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
|