Skip to content

Instantly share code, notes, and snippets.

View ynojima's full-sized avatar

Yoshikazu Nojima ynojima

View GitHub Profile
{
"zones": [
{
"name": "stack1",
"networktype": "Advanced",
"dns1": "<please fill config that fits your env.>",
"internaldns1": "<please fill config that fits your env.>,
"guestcidraddress": "<please fill config that fits your env.>",
"localstorageenabled": true,
"ipranges": [
#!/bin/bash
cli="cloudmonkey -c <cloudmonkey config>"
dns_ext=<please fill config that fits your env.>
dns_int=<please fill config that fits your env.>
gw=<please fill config that fits your env.>
nmask=<please fill config that fits your env.>
hpvr=KVM
public_ip_start=<please fill config that fits your env.>
#!/usr/bin/env ruby
class InstanceVariableEval
attr_accessor :val
def initialize
@val = "initial data"
end