From c90eba7dcf2759b534c79b638a933956d876f255 Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Mon, 26 Jan 2015 21:11:38 +0000 Subject: [PATCH] Add another example. --- lib/ansible/modules/extras/packaging/os/pkg5.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/extras/packaging/os/pkg5.py b/lib/ansible/modules/extras/packaging/os/pkg5.py index beb04441505..83c08af0c3b 100644 --- a/lib/ansible/modules/extras/packaging/os/pkg5.py +++ b/lib/ansible/modules/extras/packaging/os/pkg5.py @@ -45,6 +45,12 @@ EXAMPLES = ''' # Remove finger daemon: - pkg5: name=service/network/finger state=absent + +# Install several packages at once: +- pkg5: + name: + - /file/gnu-findutils + - /text/gnu-grep '''