You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
instances="gitlab-demo00 gitlab-nt gitlab-public gitlab-maarch"
|
|
for instance in $instances; do
|
|
cd /home/${instance}/gitlab
|
|
sudo -u $instance RAILS_ENV=production bin/background_jobs stop
|
|
sudo -u $instance RAILS_ENV=production bin/background_jobs start
|
|
done
|