docs: fix issues
[parser.git] / tosca2heat / tosca-parser / toscaparser / tests / artifacts / mongodb / config.sh
1 #!/bin/bash
2 # Edit the file /etc/mongod.conf, update with real IP of Mongo server
3 # This script configures the mongodb server to export its service on
4 # the server IP
5 # bind_ip = 127.0.0.1     -> bind_ip = <IP for Mongo server>
6 # The environment variable mongodb_ip is expected to be set up
7 sed -i "s/= 127.0.0.1/= $mongodb_ip,127.0.0.1/" /etc/mongod.conf