Adding local repositories was denied by the administrator

Adding local repositories was denied by the administrator ALMinium

Redmineのプロジェクトに新しいリポジトリを作成しようとすると下記のようにエラーが表示されてしまうことがあります。

Adding local repositories was denied by the administrator

allow_add_localを設定

{Redmineのルート}/config/scm.yml に「allow_add_local: true」を追記します。
「service httpd restart」コマンドでApacheを再起動すると作成できるようになります。

production:
   auto_create: true
   deny_delete: true
   post_create: /opt/alminium/bin/alm-scm-post-create
   allow_add_local: true
   svn:
     path: /var/opt/alminium/svn
     svnadmin: /usr/bin/svnadmin
     url: ", http://sample.com/svn"
   git:
     path: /var/opt/alminium/git
     git: /usr/bin/git
     options: --bare
     url: ", http://sample.com/git"
   mercurial:
     path: /var/opt/alminium/hg
     hg: /usr/bin/hg
     url: ", http://sample.com/hg"

 

コメント

タイトルとURLをコピーしました