This website requires JavaScript.
Explore
Help
Register
Sign In
sig_cloud
/
diskimage-builder
Watch
2
Star
0
Fork
0
You've already forked diskimage-builder
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
fc5e791a6b
diskimage-builder
/
elements
/
deploy-ironic
/
install.d
/
53-install-curl
7 lines
60 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add deploy ramdisk element for Ironic Ironic requires callback from deploy ramdisk via API with json data. Auth token also required if Keystone auth enabled for Ironic API. This patch adds separate element 'deploy-ironic' for Ironic deploy ramdisk creation. Change-Id: I5ef96711763e50307cfa17c406a9e16bffb937bc
2013-12-03 15:52:50 +00:00
#!/bin/bash
set -e all the things Using set -e in all of our scripts will prevent some subtle bugs from slipping in, and will allow us to enforce use of set -e with tooling. This change also adds -u and set -o pipefail in the less complex scripts where it is unlikely to cause problems. A follow-up change will enable those options in the complex scripts so that if it breaks something it can be reverted easily. Change-Id: I0ad358ccb98da7277a0ee2e9ce8fda98438675eb
2014-03-29 03:28:22 +00:00
set -eu
set -o pipefail
Add deploy ramdisk element for Ironic Ironic requires callback from deploy ramdisk via API with json data. Auth token also required if Keystone auth enabled for Ironic API. This patch adds separate element 'deploy-ironic' for Ironic deploy ramdisk creation. Change-Id: I5ef96711763e50307cfa17c406a9e16bffb937bc
2013-12-03 15:52:50 +00:00
install-packages curl
Reference in New Issue
Copy Permalink