-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinstall-plugins.sh
executable file
·34 lines (24 loc) · 993 Bytes
/
install-plugins.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash -ex
function install_from_github() {
local repo="$1" bundler="$2"
read username reponame <<<"${repo/\// }"
[ -d "$reponame" ] && rm -rf $reponame
(
curl -L https://api.github.com/repos/"$repo"/tarball | tar -zx --xform="s,$username-$reponame-[[:alnum:]]*,$reponame,"
cd "$reponame"
[ -n "$bundler" ] && rm -f Gemfile.lock && bundle
exit 0
)
}
cd /redmine/plugins
install_from_github skokhanovskiy/redmine_omniauth_google yes
install_from_github dergachev/redmine_git_remote
mkdir -p redmine_git_remote/repos
chown 999:999 redmine_git_remote/repos
install_from_github woblavobla/redmine_changeauthor
install_from_github two-pack/redmine_auto_assign_group
install_from_github haru/redmine_code_review
install_from_github speedy32129/time_logger
[ -f /etc/redmine-compose/plugins ] && . /etc/redmine-compose/plugins
[ -d /etc/redmine-compose/plugins.d ] && for file in /etc/redmine-compose/plugins.d/*; do . "$file"; done
touch /redmine/files/plugins-are-ready