(MODULES-4751) Fix Archive Order of Operations

Without this patch the Oracle based package installations fail due to missing dependency: the package. The package installation command is defined and applied before the archive resource downloads the remote file. This patch correctly applies the order of operations: download package, install package.
This commit is contained in:
Bryan Stopp
2017-04-20 14:17:49 -05:00
parent ab6e3867fc
commit b266755711
2 changed files with 13 additions and 1 deletions

View File

@@ -233,7 +233,7 @@ define java::oracle (
path => '/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin',
command => $install_command,
creates => $creates_path,
before => Archive[$destination]
require => Archive[$destination]
}
}
default : {