I need to set the value for "dc_local_interfaces" to "127.0.0.1;::1", but the semi-colon prevents this.
This is my definition in Puppet:
augeas { "/etc/exim4/update-exim4.conf.conf":
lens => "Shellvars.lns",
incl => "/etc/exim4/update-exim4.conf.conf",
changes => "set dc_local_interfaces 127.0.0.1;::1",
}
I tried different ways to set the value (using no apostrophes, using apostrophes, using backslash-escaped apostrophes), but none did work. Things work when I use augtool:
set /files/etc/exim4/update-exim4.conf.conf/dc_local_interfaces "'127.0.0.1;::1'"