
* made code preparations for build * Changed config file prefix as for other components Change-Id: I7169b38c425b411fd3f93fd868c906e6edcd7db4
12 lines
221 B
Bash
12 lines
221 B
Bash
#!/bin/sh
|
|
|
|
service murano-agent stop
|
|
|
|
AgentConfigBase64='%AGENT_CONFIG_BASE64%'
|
|
|
|
mkdir /etc/murano
|
|
echo $AgentConfigBase64 | base64 -d > /etc/murano/agent.conf
|
|
chmod 664 /etc/murano/agent.conf
|
|
|
|
service murano-agent start
|