From 613f24a346ea3d89eb4d804933579a3e7f37e4ae Mon Sep 17 00:00:00 2001 From: shadbarton Date: Thu, 5 Apr 2018 15:06:12 +0300 Subject: [PATCH] Fix typo in apt.py (#38332) --- lib/ansible/modules/packaging/os/apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/os/apt.py b/lib/ansible/modules/packaging/os/apt.py index 8abadd169d5..cabe2777d80 100644 --- a/lib/ansible/modules/packaging/os/apt.py +++ b/lib/ansible/modules/packaging/os/apt.py @@ -144,7 +144,7 @@ EXAMPLES = ''' - name: Install apache service but avoid starting it immediately apt: name=apache2 state=present environment: - RUNLEVLEL: 1 + RUNLEVEL: 1 - name: Remove "foo" package apt: name=foo state=absent