I am trying to make a change to my memcached.conf file via Augeas with puppet. I have this in my manifest file:
augeas { 'listen_on_IP':
context => '/etc/memcached.conf',
changes => ['set l 0.0.0.0'],
}
but I see no changes.
I'm using Ubuntu 12.04 (to mimic Heroku's Celadon Cedar stack as closely as possible) and starting with a stock memcached.conf.
What am I doing wrong?