make the removal of line safer
This commit is contained in:
parent
75f88ffda0
commit
b4ce2e8769
1 changed files with 17 additions and 16 deletions
|
@ -32,8 +32,9 @@ define line($file, $line, $ensure = 'present') {
|
|||
}
|
||||
}
|
||||
absent: {
|
||||
exec { "perl -ni -e 'print if \$_ ne \"${line}\n\";' '${file}'":
|
||||
onlyif => "grep -qFx '${line}' '${file}'"
|
||||
$subst_line = regsubst($line,'(/|\.)','\\\1','G')
|
||||
exec { "/bin/sed -i '/${subst_line}/d' '${file}'":
|
||||
onlyif => "/bin/grep -qFx '${line}' '${file}'"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue