Remove use of global variables + remove ember-cli-content-security-policy from package.json to avoid bogus csp violation warnings
# See README.md for details.
define archive::tar_gz($source, $target, $path=$::path) {
exec {"${name} unpack":
command => "curl -s -S ${source} | tar -xzf - -C ${target} && touch ${name}",
creates => $name,
path => $path,
require => Package[curl],
}
}