From 8fc2a22b4ce4066aafefe550876acd63d6de965c Mon Sep 17 00:00:00 2001 From: Benjamin Doherty Date: Sat, 28 May 2016 09:02:43 -0400 Subject: [PATCH] Add 'default' to docs for 'compression' option --- lib/ansible/modules/extras/files/archive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/extras/files/archive.py b/lib/ansible/modules/extras/files/archive.py index 3ef0dcb20cc..04f9e1f5922 100644 --- a/lib/ansible/modules/extras/files/archive.py +++ b/lib/ansible/modules/extras/files/archive.py @@ -38,6 +38,7 @@ options: description: - The type of compression to use. Can be 'gz', 'bz2', or 'zip'. choices: [ 'gz', 'bz2', 'zip' ] + default: 'gz' creates: description: - The file name of the destination archive. This is required when C(path) refers to multiple files by either specifying a glob, a directory or multiple paths in a list.