Fradium - FreeRADIUS User Manager
Fradium comes from FreeRADIUS User Manager. Quick and easy tool to manage user database of FreeRADIUS.
License
This software is licensed under the MIT license.
Installation
$ gem install fradium
You need to install corresponding database adapter gems what you want to connect.
| $ gem install <mysql2 | pq | sqlite> |
Usage
Configuration
First of all, create a confiuration file called .fradium.yaml in your home directory and specify information needed to your RADIUS database. You can define multiple configuration sets called profile.
Supported databases are MySQL and MariaDB via mysql2 adapter so far. It should be work with SQLite 3 or PostgreSQL but still experimental.
``` default: # default profile adapter: mysql2 host: radius.mysql.example.com username: root password: database: radius
staging: adapter: mysql2 host: radius.mysql.example.com username: root password: database: radius_staging
sqlite: “sqlite:///path/to/sqlite_database.sqlite” ```
Profiles can be chosen by --profile option. Specify like --profile=targetprofile. If not specified, profile named default will be refered by default. Parameters defined in this config file are passed to Sequel#connect method as-is.
Further usage
It would be easy to use. Running fradium without any options will show the usage.
``` usage: fradium [–profile=profile] subcommand …
subcommands as follows:
create
Development
After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/metalefty/rubygem-fradium.