https://github.com/s3rvac/redmine_pwauth
Adds the pwauth authentication to Redmine.
https://github.com/s3rvac/redmine_pwauth
authentication pwauth redmine ruby
Last synced: 9 months ago
JSON representation
Adds the pwauth authentication to Redmine.
- Host: GitHub
- URL: https://github.com/s3rvac/redmine_pwauth
- Owner: s3rvac
- License: mit
- Created: 2013-10-13T15:38:34.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-05-31T16:08:57.000Z (about 10 years ago)
- Last Synced: 2025-10-09T03:32:08.760Z (9 months ago)
- Topics: authentication, pwauth, redmine, ruby
- Language: Ruby
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE
Awesome Lists containing this project
README
= Redmine pwauth plugin
Adds the +pwauth+ authentication to {Redmine}[https://www.redmine.org/].
== Requirements
The plugin requires {pwauth}[https://github.com/phokz/pwauth] to be installed,
configured, and available in +PATH+, i.e. the user under which Redmine is run
can execute +pwauth+ without specifying a full path to this program.
The plugin was tested under Redmine versions 2.3 through 2.6.
== Installation
Before installing, make sure to stop Redmine. Then, perform the following
steps:
1. cd [redmine-install-dir]
2. git clone https://github.com/s3rvac/redmine_pwauth.git plugins/redmine_pwauth
3. RAILS_ENV=production rake redmine:plugins:migrate
After that, you can start Redmine and set the +pwauth+ authentication method
for the users of your choice (visit Administration > Users).
== Uninstallation
First, disable the +pwauth+ method for all users (visit Administration >
Users), and stop Redmine. Then, perform the following steps:
1. cd [redmine-install-dir]
2. RAILS_ENV=production rake redmine:plugins:migrate NAME=redmine_pwauth VERSION=0
3. rm -rf plugins/redmine_pwauth
After that, you can start Redmine.