diff --git a/restart-production b/restart-production new file mode 100644 index 0000000..51076c2 --- /dev/null +++ b/restart-production @@ -0,0 +1,3 @@ +#!/bin/bash +./stop-production +./start-production \ No newline at end of file diff --git a/start-production b/start-production index 2d7d4d0..e63207b 100755 --- a/start-production +++ b/start-production @@ -1,3 +1,10 @@ #!/bin/bash -sudo supervisorctl start sites-host-services:* sites-reeeper:* sites-newsletter:* sites-media:* sites-chat:* sites:* \ No newline at end of file +sudo supervisorctl start \ + sites-host-services:* \ + sites-reeeper:* \ + sites-newsletter:* \ + sites-newsroom:* \ + sites-media:* \ + sites-chat:* \ + sites:* \ No newline at end of file diff --git a/stop-production b/stop-production index e0d337d..35d9244 100755 --- a/stop-production +++ b/stop-production @@ -1,3 +1,10 @@ #!/bin/bash -sudo supervisorctl stop sites:* sites-chat:* sites-media:* sites-newsletter:* sites-reeeper:* sites-host-services:* \ No newline at end of file +sudo supervisorctl stop \ + sites:* + sites-chat:* \ + sites-media:* \ + sites-newsroom:* \ + sites-newsletter:* \ + sites-reeeper:* \ + sites-host-services:* \ \ No newline at end of file