I’m just getting started with cloud-config etc for setting up a droplet, and I’m just running into a slight issue with running commands.
I’m trying to run some commands which have characters that upset the YAML parser, for instance:
runcmd:
- \curl -sSL https://get.rvm.io | bash -s stable
The cloud init logs are giving me an error for runcmd, I’m assuming because it’s incorrectly parsing characters like “:” etc.
What is the correct way to specify this kind of command? Can I just put quotes around part of it, or should I escape the special characters somehow?
Cheers!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
The documentation is a bit lacking, but from the comments on the example in the upstream docs you learn:
# runcmd contains a list of either lists or a string
# each item will be executed in order at rc.local like level with
# output to the console
# - if the item is a list, the items will be properly executed as if
# passed to execve(3) (with the first arg as the command).
# - if the item is a string, it will be simply written to the file and
# will be interpreted by 'sh'
#
# Note, that the list has to be proper yaml, so you have to escape
# any characters yaml would eat (':' can be problematic)
So wrapping everything in single quotes seems like it should do the trick:
#cloud-config
runcmd:
- '\curl -sSL https://get.rvm.io | bash -s stable'
The resulting script can be found for debugging purposes in /var/lib/cloud/instance/scripts/runcmd
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.