From fc643196cad72c6883b39164caf8d053ee489ba3 Mon Sep 17 00:00:00 2001 From: Vadym Chepkov Date: Sat, 20 Sep 2014 09:57:44 -0400 Subject: [PATCH] added .Z archive handling --- manifests/extract.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/extract.pp b/manifests/extract.pp index 30436b6..aedd794 100644 --- a/manifests/extract.pp +++ b/manifests/extract.pp @@ -106,6 +106,10 @@ } } + /.Z$/: { + $command = "uncompress ${source_path}" + } + default: { fail("staging::extract: unsupported file format ${name}.") }