diff --git a/README.md b/README.md index 75deeb6..4826116 100644 --- a/README.md +++ b/README.md @@ -1,138 +1,138 @@ # debconf -[![Build Status](https://travis-ci.org/smoeding/puppet-debconf.svg?branch=master)](https://travis-ci.org/smoeding/puppet-debconf) +[![Build Status](https://travis-ci.com/smoeding/puppet-debconf.svg?branch=master)](https://travis-ci.com/smoeding/puppet-debconf) [![Puppet Forge](https://img.shields.io/puppetforge/v/stm/debconf.svg)](https://forge.puppetlabs.com/stm/debconf) [![License](https://img.shields.io/github/license/smoeding/puppet-debconf.svg)](https://raw.githubusercontent.com/smoeding/puppet-debconf/master/LICENSE) #### Table of Contents 1. [Overview](#overview) 2. [Module Description - What does the module do?](#module-description) 3. [Setup - The basics of getting started with debconf](#setup) * [What debconf affects](#what-debconf-affects) * [Setup requirements](#setup-requirements) 4. [Usage - Configuration options and additional functionality](#usage) 5. [Reference - An under-the-hood peek at what the module is doing and how](#reference) 5. [Limitations - OS compatibility, etc.](#limitations) 6. [Development - Guide for contributing to the module](#development) ## Overview Manage entries in the Debian debconf database. ## Module Description Debian based systems use the debconf database to record configuration choices the user made during the installation of a package. The system uses the stored answers and therefore does not need to query the user again when the package is upgraded or reinstalled at a later time. The debconf type allows preseeding the database with given answers to allow an unattended package installation or modification of package defaults. The type can optionally also manage the seen flag for an item. The standard `package` type uses the responsefile parameter to provide a file with preseeded answers during installation. The `debconf` type is a more general solution as it allows to update settings without the need to install the package at the same time. ## Setup ### What debconf affects The debconf type modifies entries in the Debian debconf database. ### Setup Requirements This module uses programs provided by the Debian/Ubuntu `debconf` package. Debian assigns the `required` priority to this package so it should already be installed everywhere. ## Usage Use `debconf-show` or `debconf-get-selections` to find out about valid debconf entries for an installed package. ### Example: Use dash as replacement for the bourne shell This entry will ensure a symlink from `/bin/sh` to `/bin/dash` if `dpkg-reconfigure dash` is run the next time. It will also mark the question as seen to prevent the installer from asking this question during the installation. ```puppet debconf { 'dash/sh': type => 'boolean', value => 'true', seen => true, } ``` **Note**: Although this code is perfectly legal Puppet code, the string `'true'` (not the boolean `true`) will trigger the puppet-lint warning `quoted_booleans`. But we really want to use the string `'true'` and not the boolean truth value here. So in this case we can easily suppress the warning with a [control comment](http://puppet-lint.com/controlcomments/): ```puppet debconf { 'dash/sh': type => 'boolean', value => 'true', # lint:ignore:quoted_booleans seen => true, } ``` ### Example: Automatically set a root password for MySQL during installation These two resources preseed the installation of the `mysql-server-5.5` package with the password for the MySQL root user to use. The password has to be set twice because the installation dialog asks two times for the password to detect typos. This password is used if the package is installed after these resources have been created. ```puppet debconf { 'mysql-root-passwd': package => 'mysql-server-5.5', item => 'mysql-server/root_password', type => 'password', value => 'secret', seen => true, } debconf { 'mysql-root-passwd-again': package => 'mysql-server-5.5', item => 'mysql-server/root_password_again', type => 'password', value => 'secret', seen => true, } ``` ## Reference - [**Types**](#types) - [Type: debconf](#type-debconf) ### Types #### Type: `debconf` Ensures presence or absence of a debconf database entry on Debian based systems. **Parameters for the `debconf` type:** ##### `ensure` Ensures whether the resource is present. Valid options: `present`, `absent`. Default value: `present` ##### `item` The configuration item to manage. This is normally a string with at least one slash character. Valid options: String. Default: the title of the debconf resource. ##### `package` The name of the package that owns the item. Valid options: String. Default: the prefix of the item parameter up to the first slash character. ##### `type` The data type of the item. Valid options: `'string'`, `'boolean'`, `'select'`, `'multiselect'`, `'note'`, `'text'`, `'password'`, `'title'`. This parameter is mandatory if `ensure` is `present`. Default: Undefined. ##### `value` The value to set. Valid options: String. Default: Undefined. ##### `seen` Optionally set the `seen` flag for `item`. The `seen` flag is used by the packaging system to decide if the associated configuration question should be asked during an installation. This parameter can be left undefined if the `seen` flag should not be managed. The packaging system normally sets this flag to `true` if an item is modified. The parameter can be a boolean value and the flag is set to the specified value. Valid options: `true`, `false` or undefined. Default value: Undefined. ## Limitations This module is only useful on Debian based systems where the debconf database is used. A control comment may be needed to suppress puppet-lint warnings when you set boolean values. See the [Usage](#usage) section for an example. The value of the `type` parameter is only used when an item is created. It is not updated if the value of the item is changed later. ## Development Feel free to send pull requests for new features.