mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 03:23:11 +00:00
Update README
This commit is contained in:
parent
1ec1bfc3c3
commit
a9084176ce
1 changed files with 11 additions and 10 deletions
19
README.md
19
README.md
|
@ -6,13 +6,13 @@ just a stock Ubuntu install, some clever Ansible config and a bunch of docker co
|
||||||
|
|
||||||
## What This Sets Up
|
## What This Sets Up
|
||||||
|
|
||||||
* Any number of Samba shares for you to store your stuff
|
* Any number of Samba shares for you to store your stuff
|
||||||
* A BitTorrent client
|
* A BitTorrent client
|
||||||
* Various media management tools - Sonarr, Sickrage, CouchPotato, Radarr
|
* Various media management tools - Sonarr, Sickrage, CouchPotato, Radarr
|
||||||
* A Docker host with Portainer for image and container management
|
* A Docker host with Portainer for image and container management
|
||||||
* Various ways to see stats about your NAS - Glances, dashboards in Grafana
|
* Various ways to see stats about your NAS - Glances, dashboards in Grafana
|
||||||
* A backup tool - allows scheduled backups to Amazon S3, OneDrive, Dropbox etc
|
* A backup tool - allows scheduled backups to Amazon S3, OneDrive, Dropbox etc
|
||||||
* An IRC bouncer
|
* An IRC bouncer
|
||||||
|
|
||||||
|
|
||||||
### Docker Containers Used
|
### Docker Containers Used
|
||||||
|
@ -22,6 +22,7 @@ just a stock Ubuntu install, some clever Ansible config and a bunch of docker co
|
||||||
- [Glances](https://nicolargo.github.io/glances/) for seeing the state of your system via a web browser
|
- [Glances](https://nicolargo.github.io/glances/) for seeing the state of your system via a web browser
|
||||||
- [Grafana](https://github.com/grafana/grafana) - Dashboarding tool
|
- [Grafana](https://github.com/grafana/grafana) - Dashboarding tool
|
||||||
- [InfluxDB](https://github.com/influxdata/influxdb) - Time series database used for stats collection
|
- [InfluxDB](https://github.com/influxdata/influxdb) - Time series database used for stats collection
|
||||||
|
- [Nextcloud](https://nextcloud.com/) - A self-hosted Dropbox alternative
|
||||||
- [Portainer](https://portainer.io/) for managing Docker and running custom images
|
- [Portainer](https://portainer.io/) for managing Docker and running custom images
|
||||||
- [Radarr](https://radarr.video/) for organising and downloading movies
|
- [Radarr](https://radarr.video/) for organising and downloading movies
|
||||||
- [Sickrage](https://sickrage.github.io/) for managing TV episodes
|
- [Sickrage](https://sickrage.github.io/) for managing TV episodes
|
||||||
|
@ -61,7 +62,7 @@ Ansible NAS should work on any recent Ubuntu box. Development is done on Ubuntu
|
||||||
6. If you plan to use Transmission with OpenVPN, also copy `group_vars/vpn_credentials.yml.dist` to
|
6. If you plan to use Transmission with OpenVPN, also copy `group_vars/vpn_credentials.yml.dist` to
|
||||||
`group_vars/vpn_credentials.yml` and fill in your settings.
|
`group_vars/vpn_credentials.yml` and fill in your settings.
|
||||||
7. Modify `inventory` and update it with the hostname of your NAS box, or use `localhost ansible_connection=local` if you want to run the playbook on the same box you want to use as your ansible-nas.
|
7. Modify `inventory` and update it with the hostname of your NAS box, or use `localhost ansible_connection=local` if you want to run the playbook on the same box you want to use as your ansible-nas.
|
||||||
8. Install the dependent roles: `ansible-galaxy install -r requirements.yml`
|
8. Install the dependent roles: `ansible-galaxy install -r requirements.yml` (you might need sudo to install Ansible roles)
|
||||||
9. Run the playbook - something like `ansible-playbook -i inventory nas.yml -b -K` should do you nicely.
|
9. Run the playbook - something like `ansible-playbook -i inventory nas.yml -b -K` should do you nicely.
|
||||||
|
|
||||||
|
|
||||||
|
@ -74,7 +75,7 @@ Assuming that your Ubuntu system disk is separate from your storage (it should b
|
||||||
3. Reconnect your drives.
|
3. Reconnect your drives.
|
||||||
4. SSH to the server and run `zpool list` to determine available ZFS pools.
|
4. SSH to the server and run `zpool list` to determine available ZFS pools.
|
||||||
5. `zpool import <pool_name>` against the pools you want to attach.
|
5. `zpool import <pool_name>` against the pools you want to attach.
|
||||||
6. `chown -R root:root /mnt/<pool_name>` to fix the ownership of the data
|
6. `chown -R root:root /mnt/<pool_name>` to fix the ownership of the data.
|
||||||
|
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
Loading…
Reference in a new issue