This repository has been archived by the owner on Oct 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Ansible Role: FITS | ||
|
||
An Ansible role that installs [FITS](https://projects.iq.harvard.edu/fits) on: | ||
|
||
* Centos/RHEL 7.x | ||
* Ubuntu Xenial | ||
|
||
## Role Variables | ||
|
||
Available variables are listed below, along with default values: | ||
|
||
Where to download to: | ||
``` | ||
fits_download_dir: /usr/local/src | ||
``` | ||
|
||
Version of FITS to install: | ||
``` | ||
fits_version: 1.1.1 | ||
``` | ||
|
||
Version of FITS Web service to install: | ||
``` | ||
fits_ws_version: 1.1.3 | ||
``` | ||
|
||
Where to install FITS: | ||
``` | ||
fits_install_root: /opt | ||
``` | ||
|
||
What to call the symlink created from above directory: | ||
``` | ||
fits_install_symlink: /opt/fits | ||
``` | ||
|
||
User/group to install as: | ||
``` | ||
fits_user: tomcat8 | ||
fits_group: tomcat8 | ||
``` | ||
|
||
Install the FITS web service in Tomcat | ||
``` | ||
fits_ws: yes | ||
``` | ||
|
||
## Dependencies | ||
|
||
* Tomcat | ||
|
||
## Example Playbook | ||
|
||
- hosts: webservers | ||
roles: | ||
- { role: islandora.fits } | ||
|
||
## License | ||
|
||
MIT |