Skip to content
Snippets Groups Projects
Commit 2a5f4439 authored by Noe Nieto's avatar Noe Nieto :speech_balloon:
Browse files

Merge branch 'prettified_shipyard'

parents 7849b53f dabe2a48
No related branches found
No related tags found
No related merge requests found
Pipeline #4141 failed
#! /bin/sh
echo "Shipwright commands:"
ls -w1 "$HOME/.local/ldh_developer/bin"
echo
GREEN='\033[0;32m'
NC='\033[0m' # No Color
cat << EOF
Usage: shipwright <command> [<args>]
Supported commands: `echo -n "$GREEN"`
`find $HOME/.local/ldh_developer/bin -executable -type f -printf "\t%f\n"`
`echo -n $NC`
EOF
Vagrant.configure("2") do |config|
config.vm.hostname = "{hostname}"
config.vm.define :{hostname} do |{hostname}|
{hostname}.vm.box = "debian/stretch64"
{hostname}.vm.hostname = "{hostname}"
{hostname}.vm.provider :libvirt do |libvirt|
libvirt.driver = "kvm"
libvirt.memory = "{ram}"
libvirt.username = "root"
libvirt.graphics_type = "spice"
libvirt.cpus = {cpus}
end
{hostname}.vm.provision "ansible" do |ansible|
ansible.playbook = "shim.yml"
end
config.vm.define :"{hostname}" do |maquina|
maquina.vm.box = "debian/stretch64"
maquina.vm.hostname = "{hostname}"
maquina.vm.provider :libvirt do |libvirt|
libvirt.driver = "kvm"
libvirt.memory = "{ram}"
libvirt.username = "root"
libvirt.graphics_type = "spice"
libvirt.cpus = {cpus}
end
maquina.vm.provision "ansible" do |ansible|
ansible.playbook = "shim.yml"
end
end
end
\ No newline at end of file
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment