
Change-Id: I9bb0a1fac63cc326234b0f06b1e56b43e0753279 Partially-Implements: blueprint replace-config-external
11 lines
161 B
Bash
Executable File
11 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit
|
|
|
|
CMD="/usr/bin/ceilometer-agent-notification"
|
|
ARGS=""
|
|
|
|
# Loading common functions.
|
|
source /opt/kolla/kolla-common.sh
|
|
|
|
exec $CMD $ARGS
|