diff options
Diffstat (limited to 'manifests/role')
-rw-r--r-- | manifests/role/nas.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/role/nas.pp b/manifests/role/nas.pp index d0b48fe..61e7764 100644 --- a/manifests/role/nas.pp +++ b/manifests/role/nas.pp @@ -47,6 +47,17 @@ class nodo::role::nas( value => 100000, } + # See https://dev.openwrt.org/ticket/10711 + # http://forum.doozan.com/read.php?2,1931,1931 + # http://crunchbang.org/forums/viewtopic.php?pid=294109 + # http://dev.shyd.de/2011/08/minidlna-dockstar-dlna-server/ + exec { 'minidlna-mknod-inotify': + command => 'mknod /dev/inotify c 10 63', + user => root, + group => root, + creates => '/dev/inotify', + } + class { 'minidlna': } } |