Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.1 KB

README.md

File metadata and controls

40 lines (36 loc) · 1.1 KB

Webmin Puppet Module

Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely. (To learn more about Webmin visit the projects website: http://www.webmin.com)

Basic install

  include webmin

Install just Webmin

This will just install webmin.

  class { 'webmin':
  }

Enable Config Server Firewall plugin

If you have Config Server Firewall installed, you can enable the Webmin plugin. (visit http://www.configserver.com to learn more about csf)

  class { 'webmin':
    csf => true,
  }

Disable Webmin.com Repository

If you you use your own package repository you can disable the default source from webmin.com

  class { 'webmin':
    repo => 'disable',
  }

Change Ports and bind to a specific IP

  class { 'webmin':
    webmin_port  => '12000',
    bind_ip      => '192.168.10.1',
  }
'''