mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-25 02:53:11 +00:00
Emby/Plex permissions now rw by default
This commit is contained in:
parent
724424a979
commit
6858d3b6f1
2 changed files with 8 additions and 11 deletions
11
README.md
11
README.md
|
@ -112,13 +112,10 @@ Assuming that your Ubuntu system disk is separate from your storage (it should b
|
|||
|
||||
## Requirements
|
||||
|
||||
<<<<<<< HEAD
|
||||
* Ansible NAS targets the latest Ubuntu LTS release, which is currently Ubuntu Server 18.04.2 LTS.
|
||||
* You can run Ansible-NAS on whatever you like, read the docs for more info. I use an HP Microserver.
|
||||
=======
|
||||
Ansible NAS should work on any recent Ubuntu box. Development is done on Ubuntu
|
||||
Server 18.04.1 LTS running on an HP Microserver.
|
||||
>>>>>>> Added permissions parameters to Plex and Emby
|
||||
* Ansible NAS targets the latest Ubuntu LTS release, which is currently Ubuntu
|
||||
Server 18.04.2 LTS.
|
||||
* You can run Ansible-NAS on whatever you like, read the docs for more info. I
|
||||
use an HP Microserver.
|
||||
|
||||
## Getting Help
|
||||
|
||||
|
|
|
@ -290,9 +290,9 @@ transmission_local_network: "192.168.1.0/24"
|
|||
plex_available_externally: "false"
|
||||
plex_config_directory: "{{ docker_home }}/plex/config"
|
||||
plex_movies_directory: "{{ movies_root }}"
|
||||
plex_movies_permissions: "ro"
|
||||
plex_movies_permissions: "rw"
|
||||
plex_tv_directory: "{{ tv_root }}"
|
||||
plex_tv_permissions: "ro"
|
||||
plex_tv_permissions: "rw"
|
||||
plex_user_id: 0
|
||||
plex_group_id: 0
|
||||
|
||||
|
@ -302,9 +302,9 @@ plex_group_id: 0
|
|||
emby_available_externally: "false"
|
||||
emby_config_directory: "{{ docker_home }}/emby/config"
|
||||
emby_movies_directory: "{{ movies_root }}"
|
||||
emby_movies_permissions: "ro"
|
||||
emby_movies_permissions: "rw"
|
||||
emby_tv_directory: "{{ tv_root }}"
|
||||
emby_tv_permissions: "ro"
|
||||
emby_tv_permissions: "rw"
|
||||
emby_user_id: 0
|
||||
emby_group_id: 0
|
||||
|
||||
|
|
Loading…
Reference in a new issue