From 85a3d1efb0387952dc3857b700b1ae635be1c257 Mon Sep 17 00:00:00 2001 From: Ekaterina Chernova Date: Tue, 10 Feb 2015 19:54:23 +0300 Subject: [PATCH] Remove existing config * Muranoagent config should be generated automatically. For developer purposes use tox -e genconfig * Result file etc/muranoagent/murano-agent.conf.sample is added to gitignore Change-Id: I59fe86dfe5e931c1ebd324775c930fe390852855 --- .gitignore | 2 ++ etc/agent.conf | 35 ----------------------------------- 2 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 etc/agent.conf diff --git a/.gitignore b/.gitignore index e50431d2..a303f9d7 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,5 @@ ChangeLog #Translation build *.mo +#Autogenerated sample config file +etc/muranoagent/muranoagent.conf.sample \ No newline at end of file diff --git a/etc/agent.conf b/etc/agent.conf deleted file mode 100644 index 9c1ffbf6..00000000 --- a/etc/agent.conf +++ /dev/null @@ -1,35 +0,0 @@ -[DEFAULT] -debug=True -verbose=True -log_file = /var/log/murano-agent.log -storage=/var/murano/plans - -[rabbitmq] - -# Input queue name -input_queue = agent-tasks - -# Output routing key (usually queue name) -result_routing_key = agent-results - -# Connection parameters to RabbitMQ service - -# Hostname or IP address where RabbitMQ is located. -host = localhost - -# RabbitMQ port (5672 is a default) -port = 5672 - -# Use SSL for RabbitMQ connections (True or False) -ssl = False - -# Path to SSL CA certificate or empty to allow self signed server certificate -ca_certs = - -# RabbitMQ credentials. Fresh RabbitMQ installation has "guest" account with "guest" password. -login = guest -password = guest - -# RabbitMQ virtual host (vhost). Fresh RabbitMQ installation has "/" vhost preconfigured. -virtual_host = / -