Created
November 28, 2013 04:26
-
-
Save muloka/7687250 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## credit: http://fabian-affolter.ch/blog/the-lineinfile-module-of-ansible/ | |
--- | |
- hosts: alpine_install | |
user: root | |
tasks: | |
# - name: create a complete empty file | |
# command: /usr/bin/touch /test/test.conf | |
- name: create a new file with lineinfile | |
lineinfile: dest=/test/test.conf | |
regexp='^' line='' | |
state=present | |
create=True | |
- name: add a string to the new file | |
lineinfile: dest=/test/test.conf | |
regexp='^' | |
line='Hello, World!' | |
state=present | |
- name: add a multiline string to the file and delete the string from before | |
# Be aware, with the given regex the string will be added everytime the playbook runs | |
lineinfile: dest=/test/test.conf | |
regexp='^' | |
line='#This is a comment\n#Another comment\n#Another comment, again\n#Again a comment\n#The last comment' | |
state=present | |
- name: add a single line, in this case the same as the comment but uncommented | |
lineinfile: dest=/test/test.conf | |
regexp='^Another' | |
insertafter='^#Another' | |
line='Another comment, no longer a comment' | |
state=present | |
- name: remove the line '#Again a comment' | |
lineinfile: dest=/test/test.conf | |
regexp='^#Again' | |
state=absent | |
- name: add a new string at the beginning of the file | |
lineinfile: dest=/test/test.conf | |
regexp='^This' | |
insertbefore=BOF | |
line='This is no longer a comment' | |
- name: add a new string before the match | |
lineinfile: dest=/test/test.conf | |
regexp='^Another' | |
insertbefore='^#Another' | |
line='Another comment, no longer' | |
- name: add a new string at the end of the file | |
lineinfile: dest=/test/test.conf | |
regexp='' | |
insertafter=EOF | |
line='The latest entry' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
I have a code
In the file I have 3 of the same line with name
**muc_room_default_public_jids = true**
. How I can add new line"muc_restrict_executable = "/config/data/custom_prosody_plugins/mod_muc_restrict_rooms_exec.sh"
, in this blockafter
"muc_room_default_public_jids = true"
I used this code:
But this code insert new line after 1 (first) match :(
Command
firstmatch: yes
does not work, because I need a second line with this name.