From a7d25cd4c13343d80d852c6a643492207c04f81a Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Thu, 12 Oct 2017 16:14:15 -0700 Subject: [PATCH] remove deprecation warning since we've been talked out of removing shell-local postprocessor --- post-processor/shell-local/post-processor.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/post-processor/shell-local/post-processor.go b/post-processor/shell-local/post-processor.go index 5867db97d..c2bd2d5c0 100644 --- a/post-processor/shell-local/post-processor.go +++ b/post-processor/shell-local/post-processor.go @@ -197,23 +197,6 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (pac script) } } - ui.Say("\n" + - "--------------------------------------------------------------\n" + - "--------------------DEPRECATION WARNING-----------------------\n" + - "--------------------------------------------------------------\n" + - "The shell-local provisioner will be deprecated in version 1.2.0\n" + - "If you need access to packer variables in your post-processing \n" + - "shell scripts, please use the manifest post-processor\n" + - "(see https://www.packer.io/docs/post-processors/manifest.html).\n" + - "If you need additional information that's already in the artifact,\n" + - "please open a ticket so we can add it. If the manifest provisioner\n" + - "does not fit your use case, please comment on our deprecation ticket\n" + - "with your use case so we can make sure that the transition will be\n" + - "seamless for you: https://github.com/hashicorp/packer/issues/5330\n" + - "--------------------------------------------------------------\n" + - "--------------------DEPRECATION WARNING-----------------------\n" + - "--------------------------------------------------------------\n" + - "\n\n") return artifact, true, nil }