-
Notifications
You must be signed in to change notification settings - Fork 282
task failure import-opsmgr-settings #384
Comments
We have created an issue in Pivotal Tracker to manage this. Unfortunately, the Pivotal Tracker project is private so you may be unable to view the contents of the story. The labels on this github issue will be updated when the story is started. |
Note that this is the same bug as is PR'd in #376. |
This is not the same issue as the PR #376. The issue that this person is experiencing is an issue with |
The change that needs to be made to the task. @@ -31,8 +31,8 @@ function main() {
--skip-ssl-validation \
--request-timeout 86400 \
import-installation \
- --installation "${cwd}/opsmgr-settings/${OPSMAN_SETTINGS_FILENAME}" \
- --decryption-passphrase "${OPSMAN_PASSPHRASE}"
+ --decryption-passphrase "${OPSMAN_PASSPHRASE}" \
+ --installation "${cwd}/opsmgr-settings/${OPSMAN_SETTINGS_FILENAME}"
}
main "${PWD}" |
…psman-settings does not fail #384 Signed-off-by: Kira Boyle <[email protected]>
This is being fixed because this is a breaking change for current pipelines. This will be included in the next (last) release of pcf-pipelines. This feature has not been tested by CI, nor will it be. Use this commit and the corresponding release at your own risk. In the future, please use platform-automation for all your automation needs. Pivotal Documentation |
https://github.com/pivotal-cf/pcf-pipelines/blob/40733516f1e961ea5768d7fae1be4a029fda6764/tasks/import-opsmgr-settings/task.sh#L35
--decryption-passphrase "${OPSMAN_PASSPHRASE}"
needs to be put in front of import-installation for the om-linux command to execute properly or you will get
could not execute "import-installation": the global decryption-passphrase argument is required for this command
suggest moving line 35 before 33.
The text was updated successfully, but these errors were encountered: