14.73. cdist-type__line(7)

14.73.1. NAME

cdist-type__line - Manage lines in files

14.73.2. DESCRIPTION

This cdist type allows you to add lines and remove lines from files.

14.73.3. REQUIRED PARAMETERS

14.73.4. OPTIONAL PARAMETERS

state
'present' or 'absent', defaults to 'present'
line

Specifies the line which should be absent or present

Must be present, if state is present. Must not be combined with regex, if state is absent.

regex

If state is present, search for this pattern and add given line, if the given regular expression does not match.

In case of absent, ensure all lines matching the regular expression are absent.

The regular expression is interpreted by grep.

Must not be combined with line, if state is absent.

file
If supplied, use this as the destination file. Otherwise the object_id is used.

14.73.5. MESSAGES

added
The line was added.
removed
The line was removed.

14.73.6. EXAMPLES

# Manage the DAEMONS line in rc.conf
__line daemons --file /etc/rc.conf --line 'DAEMONS=(hwclock !network sshd crond postfix)'

# Ensure the home mount is present in /etc/fstab - explicitly make it present
__line home-fstab \
    --file /etc/fstab \
    --line 'filer.fs:/vol/home /home  nfs    defaults        0 0' \
    --state present

# Removes the line specifiend in "include_www" from the file "lighttpd.conf"
__line legacy_timezone --file /etc/rc.conf --regex 'TIMEZONE=.*' --state absent

14.73.7. SEE ALSO

grep(1)

14.73.8. AUTHORS

Nico Schottelius <nico-cdist--@--schottelius.org>

14.73.9. COPYING

Copyright (C) 2012-2013 Nico Schottelius. You can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.