Skip to content

Commit 177c86c

Browse files
committed
tools: restart puma instead of unicorn after installing themes/plugins
supervisord only manages a puma program; the leftover unicorn reference made these scripts fail their restart step after a successful install. Also fixes copy-pasted comments describing them as backup scripts.
1 parent 638303e commit 177c86c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
2-
## Script to generate backup of running Redmine instance from the BASH shell
2+
## Script to install plugins on a running Redmine instance from the BASH shell
33

44
set -e
55
source ${REDMINE_RUNTIME_ASSETS_DIR}/functions
66

77
install_plugins
88

9-
# Restart unicorn
10-
supervisorctl restart unicorn
9+
# Restart puma
10+
supervisorctl restart puma
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
2-
## Script to generate backup of running Redmine instance from the BASH shell
2+
## Script to install themes on a running Redmine instance from the BASH shell
33

44
set -e
55
source ${REDMINE_RUNTIME_ASSETS_DIR}/functions
66

77
install_themes
88

9-
# Restart unicorn
10-
supervisorctl restart unicorn
9+
# Restart puma
10+
supervisorctl restart puma

0 commit comments

Comments
 (0)