feat: add jellyfin module

This commit is contained in:
2024-06-30 00:01:38 +10:00
parent 0d4652cfdf
commit e437629e12
4 changed files with 48 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# manage jellyfin service
class jellyfin::service (
$service_enable = $jellyfin::service_enable,
$service_name = $jellyfin::service_name,
) {
service{$service_name:
ensure => $service_enable,
enable => $service_enable,
}
}