Puppet Class: badstation::gui::x2go
- Defined in:
- manifests/gui/x2go.pp
Overview
Some stations provide X11 access over the newtork over X2GO
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/gui/x2go.pp', line 3
class badstation::gui::x2go {
include badstation::gui
# TODO: Why can't I run this under testing?
if (!$::badstation::testing) {
##
# A special ppa is added to ensure up to date access to x2go packages
apt::ppa { "ppa:x2go/stable":
ensure => "present"
}
##
# These packages provide remote access in an efficient way.
package { ["x2goserver", "x2goserver-xsession", "x2goclient"]:
ensure => "latest",
require => Apt::Ppa['ppa:x2go/stable'],
}
}
}
|