provision: Fix typo in list of services on RedHat.

This commit is contained in:
rht 2018-12-17 21:23:09 +00:00 committed by Tim Abbott
parent 42cbf2071b
commit 5e12eb8d34
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ def main(options):
run(["sudo", "service", "memcached", "restart"])
run(["sudo", "service", "postgresql", "restart"])
elif family == 'redhat':
for service in ["postgresql-%s" % (POSTGRES_VERSION,), "rabbitmq server", "memcached", "redis"]:
for service in ["postgresql-%s" % (POSTGRES_VERSION,), "rabbitmq-server", "memcached", "redis"]:
run(["sudo", "-H", "systemctl", "enable", service])
run(["sudo", "-H", "systemctl", "start", service])
elif options.is_docker: