2007-09-11 10:29:38 +02:00
|
|
|
# common/manifests/defines/replace.pp -- replace a pattern in a file with a string
|
|
|
|
# Copyright (C) 2007 David Schmitt <david@schmitt.edv-bus.at>
|
|
|
|
# See LICENSE for the full license granted to you.
|
|
|
|
|
|
|
|
# Usage:
|
|
|
|
#
|
2007-10-05 22:04:31 +02:00
|
|
|
# replace { description:
|
|
|
|
# file => "filename",
|
|
|
|
# pattern => "regexp",
|
|
|
|
# replacement => "replacement"
|
|
|
|
#
|
2007-10-05 22:04:32 +02:00
|
|
|
# Example:
|
|
|
|
# To replace the current port in /etc/munin/munin-node.conf
|
2007-10-05 22:04:31 +02:00
|
|
|
# with a new port, but only disturbing the file when needed:
|
|
|
|
#
|
2007-09-11 10:29:38 +02:00
|
|
|
# replace { set_munin_node_port:
|
|
|
|
# file => "/etc/munin/munin-node.conf",
|
|
|
|
# pattern => "^port (?!$port)[0-9]*",
|
|
|
|
# replacement => "port $port"
|
|
|
|
# }
|
2007-10-05 22:04:31 +02:00
|
|
|
|
2007-09-11 10:29:38 +02:00
|
|
|
define replace($file, $pattern, $replacement) {
|
|
|
|
$pattern_no_slashes = slash_escape($pattern)
|
|
|
|
$replacement_no_slashes = slash_escape($replacement)
|
|
|
|
exec { "replace_${pattern}_${file}":
|
|
|
|
command => "/usr/bin/perl -pi -e 's/$pattern_no_slashes/$replacement_no_slashes/' '$file'",
|
|
|
|
onlyif => "/usr/bin/perl -ne 'BEGIN { \$ret = 1; } \$ret = 0 if /$pattern_no_slashes/; END { exit \$ret; }' '$file'",
|
|
|
|
alias => "exec_$name",
|
|
|
|
}
|
|
|
|
}
|