Forge Home

kodi

Installs the application Kodi

7,264 downloads

5,864 latest version

4.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.3.7 (latest)
  • 0.3.6
  • 0.3.5
  • 0.3.4
  • 0.3.3 (deleted)
  • 0.3.2
  • 0.3.1
  • 0.3.0
released Jun 1st 2017
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 3.8.7 < 5.0.0

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'dermac-kodi', '0.3.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add dermac-kodi
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install dermac-kodi --version 0.3.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: xbmc, kodi

Documentation

dermac/kodi — version 0.3.2 Jun 1st 2017

Kodi Modul fuer Puppet

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with kodi
  4. Usage - Configuration options and additional functionality

Overview

Das kodi Modul installiert die Anwendung Kodi und erstellt User-Konfigurationen

Module Description

Die Kodi Klasse installiert die Anwendung, indem es die Installationsdatei herunter läd und installiert. Dies geschieht nur, wenn die installierte Version aelter (oder nicht vorhanden) als die gewuenschte Version ist.

Weiterhin wird die Resource userconfig definiert. Mit dieser kann eine Benutzerkonfiguration erstellt und verwaltet werden.

Derzeit wird nur Windows 10 unterstuetzt, an weiteren Systemen wird gearbeitet.

Setup

What kodi affects

Kodi laed die Installationsdateien in das System-Temp- (bzw. User-Temp-) Verzeichnis herunter um es zu installieren.

Die Definition userconfig erstellt bzw. aendert die advancedsettings.xml im userdata-Verzeichnis des entsprechenden Benutzers.

Setup Requirements OPTIONAL

kodi verwendet das puppet-download_file Modul

Beginning with kodi

Um Kodi lediglich zu installieren, genuegt:

    class { "kodi" :
    }

Um eine bestimmte Version zu installieren:

    class { "kodi" :
      package_version => '17.3',
      download_link => 'http://mirrors.kodi.tv/releases/win32/kodi-17.3-Krypton.exe',
    }

Um fuer den User Bob eine MySQL Kodi-DB-Verbindung zur Verfuegung zu stellen:

    kodi::resource::userconfig { 'bob':
      videodatabase_type => 'mysql',
      videodatabase_host => '192.168.1.1',
      musicdatabase_type => 'mysql',
      musicdatabase_host => '192.168.1.1',
    }

Limitations

Im Moment nur mit Windows 10 kompatibel