Defined Type: x2go::client

Defined in:
manifests/client.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
14
15
# File 'manifests/client.pp', line 6

define x2go::client (
  $ensure             =  latest,
) {
  include x2go::common
  
  package { "x2goclient":
    ensure => $ensure,
    require => Class['x2go::common','apt::update'],
  }	
}