Skip to content

kallies/puppet-x2go

This branch is 29 commits ahead of carlossg/puppet-x2go:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a9a47bc Â· May 6, 2024

History

58 Commits
Jan 3, 2018
Jan 3, 2018
Jan 3, 2018
Nov 4, 2014
Nov 25, 2017
Nov 25, 2017
Dec 21, 2017
Jan 3, 2018
Dec 21, 2017
Mar 20, 2013
May 6, 2024
Nov 25, 2017
Jan 3, 2018

Repository files navigation

x2go module for Puppet

This module provides classes to manage x2go client, server and thin client environment (aka tce).

You may choose to use either the baikal version (only bug-fixes) or the main.

About this fork

This module has been forked from ngiger/puppet-x2go because the original author switched to Saltstack.

The fork is not under active development and can be treated as deprecated.

Examples

See the files under test for more examples.

To install the x2go client

class { 'x2go':
  install_client => true,
}

This sets ensure => present for the package. If you want to set a different value, you can override the x2go::client::ensure and x2go::server::ensure parameter using hiera.

To remove the x2go client:

class { 'x2go::client':
  ensure => 'absent',
}

To only install the x2go server:

class { 'x2go':
  install_client => false,
  install_server => true,
}

To install a x2go thin client environment (tce)

🔴 The tce class has additional dependencies - which are not needed for x2go client or server class.

Dependencies when using the thin client environment

  • erwbgy-ssh >= 0.2.1
  • domcleal-augeasproviders >= 1.2.0
  • ngiger-dnsmasq >= 0.1.0
  • jbeard-nfs >= 0.1.7
  • jbeard-portmap >= 0.1.7
class { 'x2go::tce':
  version          => 'latest',
  x2go_tce_base    => '/opt/x2gothinclient', # will have chroot and etc directories below
  export_2_network => '192.168.1.0/255.255.255.0',
}

You will probably have to customize your installation: see the x2go wiki

License

Copyright 2011-2014, Niklaus Giger 2016-2018, Lukas Kallies

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.

About

Puppet module for installing x2go client & server

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Puppet 52.6%
  • Ruby 29.4%
  • HTML 15.7%
  • Shell 2.3%