Last active
September 13, 2025 13:40
-
-
Save sameersbn/dd24dfdd13bc472d11a5 to your computer and use it in GitHub Desktop.
Revisions
-
Sameer Naik revised this gist
Mar 3, 2017 . No changes.There are no files selected for viewing
-
Sameer Naik revised this gist
May 13, 2015 . 1 changed file with 17 additions and 24 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -92,7 +92,7 @@ wget -nv https://github.com/buoyant/redmine_announcements/archive/${REDMINE_ANNO # redmine recurring tasks # HOMEPAGE: https://github.com/nutso/redmine-plugin-recurring-tasks REDMINE_RECURRING_TASKS_VERSION=v1.4.0 rm -rf recurring_tasks mkdir -p recurring_tasks wget -nv https://github.com/nutso/redmine-plugin-recurring-tasks/archive/${REDMINE_RECURRING_TASKS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C recurring_tasks @@ -113,51 +113,44 @@ EOF # redmine dashboard tasks # HOMEPAGE: https://github.com/jgraichen/redmine_dashboard REDMINE_DASHBOARD_VERSION=v2.6.1 rm -rf redmine_dashboard mkdir -p redmine_dashboard wget -nv https://github.com/jgraichen/redmine_dashboard/archive/${REDMINE_DASHBOARD_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_dashboard sed "s/gem 'test-unit'/# gem 'test-unit'/" -i redmine_dashboard/Gemfile # redmine code review plugin # HOMEPAGE: https://bitbucket.org/haru_iida/redmine_code_review REDMINE_CODE_REVIEW_VERSION=0.7.0 rm -rf redmine_code_review mkdir -p redmine_code_review wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_REVIEW_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_code_review # checklists plugin # HOMEPAGE: https://github.com/RCRM/redmine_checklists REDMINE_CHECKLISTS_VERSION=v3.1.1 rm -rf redmine_checklists mkdir -p redmine_checklists wget -nv https://github.com/RCRM/redmine_checklists/archive/${REDMINE_CHECKLISTS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_checklists # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 REDMINE_PEOPLE_VERSION=0.1.8 rm -rf redmine_people mkdir -p redmine_people wget -nv https://github.com/RCRM/redmine_people/archive/${REDMINE_PEOPLE_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_people # redmine agile plugin # HOMEPAGE: http://redminecrm.com/projects/agile/pages/1 REDMINE_AGILE_VERSION=v1.3.8 rm -rf redmine_agile mkdir -p redmine_agile wget -nv https://github.com/RCRM/redmine_agile/archive/${REDMINE_AGILE_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_agile # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=v3.4.5 rm -rf redmine_contacts mkdir -p redmine_contacts wget -nv https://github.com/RCRM/redmine_contacts/archive/${REDMINE_CONTACTS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_contacts sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile -
Sameer Naik revised this gist
May 3, 2015 . 1 changed file with 53 additions and 10 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/bash # # Author: Sameer Naik <[email protected]> # Gist: https://gist.github.com/sameersbn/dd24dfdd13bc472d11a5 # Short Url (raw): http://goo.gl/iJcvCP # @@ -68,7 +68,38 @@ rm -rf open_flash_chart mkdir -p open_flash_chart wget -nv https://github.com/pullmonkey/open_flash_chart/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C open_flash_chart cat >> init <<EOF # copy open_flash_chart public assets if [ ! -d /home/redmine/redmine/public/plugin_assets/open_flash_chart ]; then mkdir -p /home/redmine/redmine/public/plugin_assets/open_flash_chart cp -r /home/redmine/data/plugins/open_flash_chart/assets/* /home/redmine/redmine/public/plugin_assets/open_flash_chart fi EOF # redmine charts2 plugin # HOMEPAGE: https://github.com/pharmazone/redmine_charts2 rm -rf redmine_charts2 mkdir -p redmine_charts2 wget -nv https://github.com/pharmazone/redmine_charts2/archive/redmine21.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_charts2 # redmine announcements plugin # HOMEPAGE: https://github.com/buoyant/redmine_announcements REDMINE_ANNOUNCEMENTS_VERSION=v1.3 rm -rf redmine_announcements mkdir -p redmine_announcements wget -nv https://github.com/buoyant/redmine_announcements/archive/${REDMINE_ANNOUNCEMENTS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_announcements # redmine recurring tasks # HOMEPAGE: https://github.com/nutso/redmine-plugin-recurring-tasks REDMINE_RECURRING_TASKS_VERSION=v.1.3.0 rm -rf recurring_tasks mkdir -p recurring_tasks wget -nv https://github.com/nutso/redmine-plugin-recurring-tasks/archive/${REDMINE_RECURRING_TASKS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C recurring_tasks cat >> init <<EOF # list existing cron jobs for redmine user crontab -u redmine -l 2>/dev/null >/tmp/cron.redmine # add new job for recurring tasks if it does not exist if ! grep -q redmine:recur_tasks /tmp/cron.redmine; then @@ -94,27 +125,39 @@ rm -rf redmine_code_review mkdir -p redmine_code_review wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_REVIEW_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_code_review # ## Install zipped archives # # checklists plugin # HOMEPAGE: http://redminecrm.com/projects/checklist/pages/1 REDMINE_CHECKLISTS_VERSION=3_0_1 rm -rf redmine_checklists wget http://redminecrm.com/license_manager/14218/redmine_checklists-${REDMINE_CHECKLISTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_checklists-${REDMINE_CHECKLISTS_VERSION}-light.zip rm -rf /tmp/redmine_checklists-${REDMINE_CHECKLISTS_VERSION}-light.zip # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 REDMINE_PEOPLE_VERSION=0_1_8 rm -rf redmine_people wget http://redminecrm.com/license_manager/11368/redmine_people-${REDMINE_PEOPLE_VERSION}.zip -P /tmp/ unzip /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip rm -rf /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip # redmine agile plugin # HOMEPAGE: http://redminecrm.com/projects/agile/pages/1 REDMINE_AGILE_VERSION=1_3_2 rm -rf redmine_agile wget http://redminecrm.com/license_manager/13082/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip rm -rf /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=3.4.4 rm -rf redmine_contacts wget http://redminecrm.com/license_manager/15889/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip rm -rf /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile -
Sameer Naik revised this gist
May 3, 2015 . 1 changed file with 10 additions and 53 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/bash # # Author: Sameer Naik # Gist: https://gist.github.com/sameersbn/dd24dfdd13bc472d11a5 # Short Url (raw): http://goo.gl/iJcvCP # @@ -68,38 +68,7 @@ rm -rf open_flash_chart mkdir -p open_flash_chart wget -nv https://github.com/pullmonkey/open_flash_chart/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C open_flash_chart cat >> init > init /dev/null >/tmp/cron.redmine # add new job for recurring tasks if it does not exist if ! grep -q redmine:recur_tasks /tmp/cron.redmine; then @@ -125,39 +94,27 @@ rm -rf redmine_code_review mkdir -p redmine_code_review wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_REVIEW_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_code_review # checklists plugin # HOMEPAGE: http://redminecrm.com/projects/checklist/pages/1 rm -rf redmine_checklists mkdir -p redmine_checklists wget https://github.com/RCRM/redmine_checklists/archive/v3.1.1.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_checklists # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 rm -rf redmine_people mkdir -p redmine_people wget https://github.com/RCRM/redmine_people/archive/0.1.8.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_people # redmine agile plugin # HOMEPAGE: http://redminecrm.com/projects/agile/pages/1 rm -rf redmine_agile mkdir -p redmine_agile wget https://github.com/RCRM/redmine_agile/archive/v1.3.8.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_agile # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 rm -rf redmine_contacts mkdir -p redmine_contacts wget https://github.com/RCRM/redmine_contacts/archive/v3.4.5.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_contacts sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile -
Sameer Naik revised this gist
Dec 24, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -157,7 +157,7 @@ rm -rf /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=3.4.4 rm -rf redmine_contacts wget http://redminecrm.com/license_manager/15889/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip rm -rf /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile -
Sameer Naik revised this gist
Dec 24, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -155,9 +155,9 @@ rm -rf /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=3.4.4 rm -rf redmine_contacts wget http://redminecrm.com/license_manager/15889redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip rm -rf /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile -
Sameer Naik revised this gist
Dec 18, 2014 . 1 changed file with 6 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -99,17 +99,16 @@ wget -nv https://github.com/nutso/redmine-plugin-recurring-tasks/archive/${REDMI cat >> init <<EOF # list existing cron jobs for redmine user crontab -u redmine -l 2>/dev/null >/tmp/cron.redmine # add new job for recurring tasks if it does not exist if ! grep -q redmine:recur_tasks /tmp/cron.redmine; then echo '@hourly cd /home/redmine/redmine && bundle exec rake redmine:recur_tasks RAILS_ENV=production >> log/cron_rake.log 2>&1' >>/tmp/cron.redmine crontab -u redmine /tmp/cron.redmine 2>/dev/null fi # remove the temporary file rm -rf /tmp/cron.redmine EOF # redmine dashboard tasks -
Sameer Naik revised this gist
Sep 17, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -156,9 +156,9 @@ rm -rf /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=3.3.0 rm -rf redmine_contacts wget http://redminecrm.com/license_manager/14220/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip rm -rf /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile -
Sameer Naik revised this gist
Sep 17, 2014 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -130,13 +130,13 @@ wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_ ## Install zipped archives # # checklists plugin # HOMEPAGE: http://redminecrm.com/projects/checklist/pages/1 REDMINE_CHECKLISTS_VERSION=3_0_1 rm -rf redmine_checklists wget http://redminecrm.com/license_manager/14218/redmine_checklists-${REDMINE_CHECKLISTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_checklists-${REDMINE_CHECKLISTS_VERSION}-light.zip rm -rf /tmp/redmine_checklists-${REDMINE_CHECKLISTS_VERSION}-light.zip # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 -
Sameer Naik revised this gist
Sep 17, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -135,8 +135,8 @@ wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_ REDMINE_ISSUE_CHECKLIST_VERSION=3_0_1 rm -rf redmine_issue_checklist wget http://redminecrm.com/license_manager/14218/redmine_checklists-${REDMINE_ISSUE_CHECKLIST_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}-light.zip rm -rf /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}-light.zip # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 -
Sameer Naik revised this gist
Sep 17, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -132,9 +132,9 @@ wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_ # issue checklist plugin # HOMEPAGE: http://redminecrm.com/projects/checklist/pages/1 REDMINE_ISSUE_CHECKLIST_VERSION=3_0_1 rm -rf redmine_issue_checklist wget http://redminecrm.com/license_manager/14218/redmine_checklists-${REDMINE_ISSUE_CHECKLIST_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip rm -rf /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip -
Sameer Naik revised this gist
Sep 11, 2014 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -85,17 +85,17 @@ wget -nv https://github.com/pharmazone/redmine_charts2/archive/redmine21.tar.gz # redmine announcements plugin # HOMEPAGE: https://github.com/buoyant/redmine_announcements REDMINE_ANNOUNCEMENTS_VERSION=v1.3 rm -rf redmine_announcements mkdir -p redmine_announcements wget -nv https://github.com/buoyant/redmine_announcements/archive/${REDMINE_ANNOUNCEMENTS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_announcements # redmine recurring tasks # HOMEPAGE: https://github.com/nutso/redmine-plugin-recurring-tasks REDMINE_RECURRING_TASKS_VERSION=v.1.3.0 rm -rf recurring_tasks mkdir -p recurring_tasks wget -nv https://github.com/nutso/redmine-plugin-recurring-tasks/archive/${REDMINE_RECURRING_TASKS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C recurring_tasks cat >> init <<EOF # list existing cron jobs for redmine user @@ -114,10 +114,10 @@ EOF # redmine dashboard tasks # HOMEPAGE: https://github.com/jgraichen/redmine_dashboard REDMINE_DASHBOARD_VERSION=master rm -rf redmine_dashboard mkdir -p redmine_dashboard wget -nv https://github.com/jgraichen/redmine_dashboard/archive/${REDMINE_DASHBOARD_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_dashboard # redmine code review plugin # HOMEPAGE: https://bitbucket.org/haru_iida/redmine_code_review -
Sameer Naik revised this gist
Sep 6, 2014 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -70,8 +70,10 @@ wget -nv https://github.com/pullmonkey/open_flash_chart/archive/master.tar.gz -O cat >> init <<EOF # copy open_flash_chart public assets if [ ! -d /home/redmine/redmine/public/plugin_assets/open_flash_chart ]; then mkdir -p /home/redmine/redmine/public/plugin_assets/open_flash_chart cp -r /home/redmine/data/plugins/open_flash_chart/assets/* /home/redmine/redmine/public/plugin_assets/open_flash_chart fi EOF -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -70,7 +70,6 @@ wget -nv https://github.com/pullmonkey/open_flash_chart/archive/master.tar.gz -O cat >> init <<EOF # copy open_flash_chart public assets mkdir -p /home/redmine/redmine/public/plugin_assets/open_flash_chart cp -r /home/redmine/data/plugins/open_flash_chart/assets/* /home/redmine/redmine/public/plugin_assets/open_flash_chart -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -140,7 +140,7 @@ rm -rf /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 REDMINE_PEOPLE_VERSION=0_1_8 rm -rf redmine_people wget http://redminecrm.com/license_manager/11368/redmine_people-${REDMINE_PEOPLE_VERSION}.zip -P /tmp/ unzip /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip rm -rf /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 18 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,67 +20,79 @@ set -e # redmine tweaks plugin # HOMEPAGE: https://github.com/alexandermeindl/redmine_tweaks rm -rf redmine_tweaks mkdir -p redmine_tweaks wget -nv https://github.com/alexandermeindl/redmine_tweaks/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_tweaks # line numbers plugin # HOMEPAGE: https://github.com/cdwertmann/line_numbers rm -rf line_numbers mkdir -p line_numbers wget -nv https://github.com/cdwertmann/line_numbers/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C line_numbers # did you mean? plugin # HOMEPAGE: https://github.com/abahgat/redmine_didyoumean REDMINE_DID_YOU_MEAN_VERSION=1.2.0 rm -rf redmine_didyoumean mkdir -p redmine_didyoumean wget -nv https://github.com/abahgat/redmine_didyoumean/archive/${REDMINE_DID_YOU_MEAN_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_didyoumean # redmine embed video plugin # HOMEPAGE: https://github.com/cforce/redmine_embedded_video rm -rf redmine_embedded_video mkdir -p redmine_embedded_video wget -nv https://github.com/cforce/redmine_embedded_video/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_embedded_video # redmine gist plugin # HOMEPAGE: https://github.com/dergachev/redmine_gist rm -rf redmine_gist mkdir -p redmine_gist wget -nv https://github.com/dergachev/redmine_gist/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_gist # redmine tags plugin # HOMEPAGE: https://github.com/ixti/redmine_tags REDMINE_TAGS_VERSION=2.1.0 rm -rf redmine_tags mkdir -p redmine_tags wget -nv https://github.com/ixti/redmine_tags/archive/${REDMINE_TAGS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_tags # issuefy plugin # HOMEPAGE: https://github.com/tchx84/issuefy rm -rf issuefy mkdir -p issuefy wget -nv https://github.com/tchx84/issuefy/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C issuefy # open flash charts plugin (required by redmine_charts2) # HOMEPAGE: https://github.com/pullmonkey/open_flash_chart rm -rf open_flash_chart mkdir -p open_flash_chart wget -nv https://github.com/pullmonkey/open_flash_chart/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C open_flash_chart cat >> init <<EOF # copy open_flash_chart public assets rm -rf /home mkdir -p /home/redmine/redmine/public/plugin_assets/open_flash_chart cp -r /home/redmine/data/plugins/open_flash_chart/assets/* /home/redmine/redmine/public/plugin_assets/open_flash_chart EOF # redmine charts2 plugin # HOMEPAGE: https://github.com/pharmazone/redmine_charts2 rm -rf redmine_charts2 mkdir -p redmine_charts2 wget -nv https://github.com/pharmazone/redmine_charts2/archive/redmine21.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_charts2 # redmine announcements plugin # HOMEPAGE: https://github.com/buoyant/redmine_announcements REDMINE_ANNOUNCEMENTS_VERSION=1.3 rm -rf redmine_announcements mkdir -p redmine_announcements wget -nv https://github.com/buoyant/redmine_announcements/archive/v${REDMINE_ANNOUNCEMENTS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_announcements # redmine recurring tasks # HOMEPAGE: https://github.com/nutso/redmine-plugin-recurring-tasks REDMINE_RECURRING_TASKS_VERSION=1.3.0 rm -rf recurring_tasks mkdir -p recurring_tasks wget -nv https://github.com/nutso/redmine-plugin-recurring-tasks/archive/v.${REDMINE_RECURRING_TASKS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C recurring_tasks @@ -102,12 +114,14 @@ EOF # redmine dashboard tasks # HOMEPAGE: https://github.com/jgraichen/redmine_dashboard REDMINE_DASHBOARD_VERSION=2.3.2 rm -rf redmine_dashboard mkdir -p redmine_dashboard wget -nv https://github.com/jgraichen/redmine_dashboard/archive/v${REDMINE_DASHBOARD_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_dashboard # redmine code review plugin # HOMEPAGE: https://bitbucket.org/haru_iida/redmine_code_review REDMINE_CODE_REVIEW_VERSION=0.6.3 rm -rf redmine_code_review mkdir -p redmine_code_review wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_REVIEW_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_code_review @@ -118,27 +132,31 @@ wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_ # issue checklist plugin # HOMEPAGE: http://redminecrm.com/projects/checklist/pages/1 REDMINE_ISSUE_CHECKLIST_VERSION=2_0_5 rm -rf redmine_issue_checklist wget http://redminecrm.com/license_manager/4200/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip -P /tmp/ unzip /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip rm -rf /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 REDMINE_PEOPLE_VERSION=0_1_8 rm =rf redmine_people wget http://redminecrm.com/license_manager/11368/redmine_people-${REDMINE_PEOPLE_VERSION}.zip -P /tmp/ unzip /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip rm -rf /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip # redmine agile plugin # HOMEPAGE: http://redminecrm.com/projects/agile/pages/1 REDMINE_AGILE_VERSION=1_3_2 rm -rf redmine_agile wget http://redminecrm.com/license_manager/13082/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip rm -rf /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=3.2.17 rm -rf redmine_contacts wget http://redminecrm.com/license_manager/12403/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip rm -rf /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -
Sameer Naik renamed this gist
Sep 5, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 11 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,18 @@ #!/bin/bash # # Author: Sameer Naik <[email protected]> # Gist: https://gist.github.com/sameersbn/dd24dfdd13bc472d11a5 # Short Url (raw): http://goo.gl/iJcvCP # # Installs a bunch of plugins for the docker-redmine image # # Usage: # $ mkdir -p /opt/redmine/data/plugins # $ cd /opt/redmine/data/plugins # $ wget http://goo.gl/iJcvCP -O - | sh # set -e # ## Install tarballs -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ set -e # Author: Sameer Naik <[email protected]> # Gist: https://gist.github.com/sameersbn/dd24dfdd13bc472d11a5 # Short Url (raw): http://goo.gl/iJcvCP # -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,8 @@ set -e # Author: Sameer Naik <[email protected]> # Location: https://gist.github.com/sameersbn/dd24dfdd13bc472d11a5 # Short Url (raw): http://goo.gl/iJcvCP # ## Install tarballs -
Sameer Naik revised this gist
Sep 5, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ #!/bin/bash set -e # Author: Sameer Naik <[email protected]> # Location: http://goo.gl/sMzi7P # ## Install tarballs # -
Sameer Naik created this gist
Sep 5, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,132 @@ #!/bin/bash set -e # ## Install tarballs # # redmine tweaks plugin # HOMEPAGE: https://github.com/alexandermeindl/redmine_tweaks mkdir -p redmine_tweaks wget -nv https://github.com/alexandermeindl/redmine_tweaks/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_tweaks # line numbers plugin # HOMEPAGE: https://github.com/cdwertmann/line_numbers mkdir -p line_numbers wget -nv https://github.com/cdwertmann/line_numbers/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C line_numbers # did you mean? plugin # HOMEPAGE: https://github.com/abahgat/redmine_didyoumean REDMINE_DID_YOU_MEAN_VERSION=1.2.0 mkdir -p redmine_didyoumean wget -nv https://github.com/abahgat/redmine_didyoumean/archive/${REDMINE_DID_YOU_MEAN_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_didyoumean # redmine embed video plugin # HOMEPAGE: https://github.com/cforce/redmine_embedded_video mkdir -p redmine_embedded_video wget -nv https://github.com/cforce/redmine_embedded_video/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_embedded_video # redmine gist plugin # HOMEPAGE: https://github.com/dergachev/redmine_gist mkdir -p redmine_gist wget -nv https://github.com/dergachev/redmine_gist/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_gist # redmine tags plugin # HOMEPAGE: https://github.com/ixti/redmine_tags REDMINE_TAGS_VERSION=2.1.0 mkdir -p redmine_tags wget -nv https://github.com/ixti/redmine_tags/archive/${REDMINE_TAGS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_tags # issuefy plugin # HOMEPAGE: https://github.com/tchx84/issuefy mkdir -p issuefy wget -nv https://github.com/tchx84/issuefy/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C issuefy # open flash charts plugin (required by redmine_charts2) # HOMEPAGE: https://github.com/pullmonkey/open_flash_chart mkdir -p open_flash_chart wget -nv https://github.com/pullmonkey/open_flash_chart/archive/master.tar.gz -O - | tar -zvxf - --strip=1 -C open_flash_chart cat >> init <<EOF # copy open_flash_chart public assets mkdir -p /home/redmine/redmine/public/plugin_assets/open_flash_chart cp -r /home/redmine/data/plugins/open_flash_chart/assets/* /home/redmine/redmine/public/plugin_assets/open_flash_chart EOF # redmine charts2 plugin # HOMEPAGE: https://github.com/pharmazone/redmine_charts2 mkdir -p redmine_charts2 wget -nv https://github.com/pharmazone/redmine_charts2/archive/redmine21.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_charts2 # redmine announcements plugin # HOMEPAGE: https://github.com/buoyant/redmine_announcements REDMINE_ANNOUNCEMENTS_VERSION=1.3 mkdir -p redmine_announcements wget -nv https://github.com/buoyant/redmine_announcements/archive/v${REDMINE_ANNOUNCEMENTS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_announcements # redmine recurring tasks # HOMEPAGE: https://github.com/nutso/redmine-plugin-recurring-tasks REDMINE_RECURRING_TASKS_VERSION=1.3.0 mkdir -p recurring_tasks wget -nv https://github.com/nutso/redmine-plugin-recurring-tasks/archive/v.${REDMINE_RECURRING_TASKS_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C recurring_tasks cat >> init <<EOF # list existing cron jobs for redmine user set +e crontab -u redmine -l 2>/dev/null >/tmp/cron.redmine set -e # add new job for recurring tasks echo '* */4 * * * cd /home/redmine/redmine && bundle exec rake redmine:recur_tasks RAILS_ENV=production >> log/cron_rake.log 2>&1' >>/tmp/cron.redmine # install the new jobs crontab -u redmine /tmp/cron.redmine 2>/dev/null rm -rf /tmp/cron.redmine EOF # redmine dashboard tasks # HOMEPAGE: https://github.com/jgraichen/redmine_dashboard REDMINE_DASHBOARD_VERSION=2.3.2 mkdir -p redmine_dashboard wget -nv https://github.com/jgraichen/redmine_dashboard/archive/v${REDMINE_DASHBOARD_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_dashboard # redmine code review plugin # HOMEPAGE: https://bitbucket.org/haru_iida/redmine_code_review REDMINE_CODE_REVIEW_VERSION=0.6.3 mkdir -p redmine_code_review wget -nv https://bitbucket.org/haru_iida/redmine_code_review/get/${REDMINE_CODE_REVIEW_VERSION}.tar.gz -O - | tar -zvxf - --strip=1 -C redmine_code_review # ## Install zipped archives # # issue checklist plugin # HOMEPAGE: http://redminecrm.com/projects/checklist/pages/1 REDMINE_ISSUE_CHECKLIST_VERSION=2_0_5 wget http://redminecrm.com/license_manager/4200/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip -P /tmp/ unzip /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip rm -rf /tmp/redmine_issue_checklist-${REDMINE_ISSUE_CHECKLIST_VERSION}.zip # redmine people plugin # HOMEPAGE: http://redminecrm.com/projects/people/pages/1 REDMINE_PEOPLE_VERSION=0_1_8 wget http://redminecrm.com/license_manager/11368/redmine_people-${REDMINE_PEOPLE_VERSION}.zip -P /tmp/ unzip /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip rm -rf /tmp/redmine_people-${REDMINE_PEOPLE_VERSION}.zip # redmine agile plugin # HOMEPAGE: http://redminecrm.com/projects/agile/pages/1 REDMINE_AGILE_VERSION=1_3_2 wget http://redminecrm.com/license_manager/13082/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip rm -rf /tmp/redmine_agile-${REDMINE_AGILE_VERSION}-light.zip # redmine contacts plugin # HOMEPAGE: http://redminecrm.com/projects/crm/pages/1 REDMINE_CONTACTS_VERSION=3.2.17 wget http://redminecrm.com/license_manager/12403/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip -P /tmp/ unzip /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip rm -rf /tmp/redmine_contacts-${REDMINE_CONTACTS_VERSION}-light.zip sed 's/gem "spreadsheet/# gem "spreadsheet/' -i redmine_contacts/Gemfile