lib/torpedo.rb in torpedo-1.0.16 vs lib/torpedo.rb in torpedo-1.0.17

- old
+ new

@@ -6,19 +6,22 @@ SSH_TIMEOUT=(configs['ssh_timeout'] || 30).to_i TEST_SSH=configs.fetch('test_ssh', true) PING_TIMEOUT=(configs['ping_timeout'] || 60).to_i TEST_PING=configs.fetch('test_ping', true) SERVER_BUILD_TIMEOUT=(configs['server_build_timeout'] || 60).to_i +SLEEP_AFTER_IMAGE_CREATE=(configs['sleep_after_image_create'] || 0).to_i SSH_PRIVATE_KEY=configs['ssh_private_key'] || ENV['HOME'] + "/.ssh/id_rsa" SSH_PUBLIC_KEY=configs['ssh_public_key'] || ENV['HOME'] + "/.ssh/id_rsa.pub" TEST_CREATE_IMAGE=configs['test_create_image'] || false TEST_REBUILD_SERVER=configs['test_rebuild_server'] || false TEST_SOFT_REBOOT_SERVER=configs['test_soft_reboot_server'] || false TEST_HARD_REBOOT_SERVER=configs['test_hard_reboot_server'] || false TEST_RESIZE_SERVER=configs['test_resize_server'] || false TEST_REVERT_RESIZE_SERVER=configs['test_revert_resize_server'] || false TEST_ADMIN_PASSWORD=configs['test_admin_password'] || false TEST_HOSTID_ON_RESIZE=configs['test_hostid_on_resize'] || false +TEST_IP_TYPE=configs['test_ip_type'] || 4 +TEST_LIMITS=configs.fetch('test_limits', true) CLEAN_UP_SERVERS=configs.fetch('clean_up_servers', true) CLEAN_UP_IMAGES=configs.fetch('clean_up_images', true) KEYPAIR=configs['keypair'] KEYNAME=configs['keyname']