Defined Type: x2go::plugin

Defined in:
manifests/plugin.pp

Overview

Copyright 2011, niklaus.giger@member.fsf.org

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation.class

Parameters:

  • ensure (Any) (defaults to: latest)


6
7
8
9
10
11
12
13
# File 'manifests/plugin.pp', line 6

define x2go::plugin (
  $ensure             =  latest,
) {
  include x2go::common
  package { "x2goplugin":
    ensure => installed,
  }	
}