diff options
Diffstat (limited to 'manifests/role')
-rw-r--r-- | manifests/role/nas.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/manifests/role/nas.pp b/manifests/role/nas.pp index 3ab7bb5..f834322 100644 --- a/manifests/role/nas.pp +++ b/manifests/role/nas.pp @@ -39,6 +39,11 @@ class nodo::role::nas( $dlna = hiera('nodo::role::nas::dlna', false) if $dlna == true { + # See https://wiki.archlinux.org/index.php/MiniDLNA#Automatic_Media_DB_Update + sysctl { 'fs.inotify.max_user_watches': + value => 100000, + } + class { 'minidlna': } } |