mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 03:23:11 +00:00
Merge pull request #161 from lmprice/plex_photos
Add photo support to Plex application
This commit is contained in:
commit
f96bf924c7
2 changed files with 6 additions and 0 deletions
|
@ -157,6 +157,9 @@ podcasts_root: "{{ samba_shares_root }}/podcasts"
|
|||
# Where your books are stored
|
||||
books_root: "{{ samba_shares_root }}/books"
|
||||
|
||||
# Where photos are stored
|
||||
photos_root: "{{ samba_shares_root }}/photos"
|
||||
|
||||
# The description that'll appear next to your Ansible-NAS box when browsing your network
|
||||
samba_server_string: Ansible NAS
|
||||
|
||||
|
@ -355,6 +358,8 @@ plex_movies_directory: "{{ movies_root }}"
|
|||
plex_movies_permissions: "rw"
|
||||
plex_tv_directory: "{{ tv_root }}"
|
||||
plex_tv_permissions: "rw"
|
||||
plex_photos_directory: "{{ photos_root }}"
|
||||
plex_photos_permissions: "rw"
|
||||
plex_music_directory: "{{ music_root }}"
|
||||
plex_music_permissions: "rw"
|
||||
plex_user_id: 0
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
- "{{ plex_config_directory }}:/config:rw"
|
||||
- "{{ plex_movies_directory }}:/movies:{{ plex_movies_permissions }}"
|
||||
- "{{ plex_tv_directory }}:/tv:{{ plex_tv_permissions }}"
|
||||
- "{{ plex_photos_directory }}:/photos:{{ plex_photos_permissions }}"
|
||||
- "{{ plex_music_directory }}:/music:{{ plex_music_permissions }}"
|
||||
network_mode: "host"
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue