From b1160452205dae5630a28fdfb14e68e433a16b40 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Wed, 5 Jun 2013 13:54:37 -0400 Subject: [PATCH] lineinfile example: /etc/host[s] Change a lineinfile example from /etc/host to /etc/hosts --- files/lineinfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/lineinfile b/files/lineinfile index 7aac8e81c35..ae4e0c7b458 100644 --- a/files/lineinfile +++ b/files/lineinfile @@ -118,7 +118,7 @@ EXAMPLES = r""" lineinfile: dest=/etc/sudoers state=absent regexp="^%wheel" - lineinfile: dest=/etc/host regexp='^127\.0\.0\.1' line='127.0.0.1 localhost' owner=root group=root mode=0644 + lineinfile: dest=/etc/hosts regexp='^127\.0\.0\.1' line='127.0.0.1 localhost' owner=root group=root mode=0644 lineinfile: dest=/etc/httpd/conf/httpd.conf regexp="^Listen " insertafter="^#Listen " line="Listen 8080"