Skip to content

softasap/sa-chef-lineinfile

Repository files navigation

sa-chef-lineinfile

OpsCode Chef proof of concept implementation of http://docs.ansible.com/ansible/lineinfile_module.html

Build Status

Example of use:

node['sa-postfix-chef']['postfix_properties'].each do |a_property|

    lineinfile '/etc/postfix/main.cf' do
      regexp a_property['regexp']
      line   a_property['line']

    end

end

in example above, node['sa-postfix-chef']['postfix_properties'] is an array like:

default['sa-postfix-chef']['postfix_properties'] = [
  { regexp: '^myhostname =*', line: "myhostname = #{default['sa-postfix-chef']['postfix_hostname']}" },
  { regexp: '^myorigin =*', line: 'myorigin = $mydomain' },
  { regexp: '^relayhost =*', line: 'relayhost = ' },
  { regexp: '^inet_interfaces =*', line: 'inet_interfaces = loopback-only' },
  { regexp: '^mydestination =*', line: 'mydestination = loopback-only' },
  { regexp: '^mydomain =*', line: "mydomain = #{default['sa-postfix-chef']['postfix_domain']}" }
]