Version information
Start using this module
Add this module to your Puppetfile:
mod 'arusso-vnc', '0.0.3'
Learn more about managing modules with a PuppetfileDocumentation
vnc Server Module
This is a module for managing a VNC server on Red Hat based hosts. It currently is geared towards rhel6. Pull requests supporting other distros are welcome.
Further Development
Further development of this module will consist of bugfixes and pull requests only.
Examples
The simplest method for configuring two VNC servers on :1
and :2
$vnc_arusso = {
'user' => 'arusso',
'args' => '-SecurityTypes=VeNCrypt,TLSPlain -PlainUsers=arusso pam_service=login',
}
$vnc_brusso = {
'user' => 'brusso',
'args' => '-SecurityTypes=VeNCrypt,TLSVNC',
}
class { 'vnc': servers => [ $vnc_arusso, $vnc_brusso ] }
You should now be able to connect to 5901
as arusso and 5902
as brusso.
Binary Requirements
See module documentation (init.pp) for more information.
License
See LICENSE file
Copyright
Copyright © 2013 The Regents of the University of California
Contact
Aaron Russo arusso@berkeley.edu
Support
Please log tickets and issues at the Projects site
2013-07-30 Aaron Russo arusso@berkeley.edu - 0.0.3
- Added validation of servers parameters
2013-07-30 Aaron Russo arusso@berkeley.edu - 0.0.2
- Updated README to indicate status of module
2013-07-23 Aaron Russo arusso@berkeley.edu - 0.0.1
- Initial Release
The MIT License (MIT) Copyright (c) 2013 The Regents of the University of California Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.