chef-vpc-toolkit 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +4 -1
- data/VERSION +1 -1
- data/lib/chef-vpc-toolkit/vpn_openvpn.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
* Thu Jun
|
|
1
|
+
* Thu Jun 23 2011 Dan Prince <dan.prince@rackspace.com> - 2.6.1
|
|
2
|
+
- Use /sbin/ifconfig instead of ifconfig when testing for tap/tun.
|
|
3
|
+
|
|
4
|
+
* Tue Jun 21 2011 Dan Prince <dan.prince@rackspace.com> - 2.6.0
|
|
2
5
|
- Update to support images that have Chef preinstalled.
|
|
3
6
|
- Skip missing nodes when trying to install Chef.
|
|
4
7
|
- Added vpn_connection_type option w/ support for using command line
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.6.
|
|
1
|
+
2.6.1
|
|
@@ -98,7 +98,7 @@ EOF_CONFIG
|
|
|
98
98
|
def poll_vpn_interface
|
|
99
99
|
interface_name=@group.vpn_device+"0"
|
|
100
100
|
1.upto(30) do |i|
|
|
101
|
-
break if system("ifconfig #{interface_name}
|
|
101
|
+
break if system("/sbin/ifconfig #{interface_name} > /dev/null 2>&1")
|
|
102
102
|
if i == 30 then
|
|
103
103
|
disconnect
|
|
104
104
|
raise "Failed to connect to VPN."
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-vpc-toolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 6
|
|
9
|
-
-
|
|
10
|
-
version: 2.6.
|
|
9
|
+
- 1
|
|
10
|
+
version: 2.6.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Dan Prince
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-06-
|
|
18
|
+
date: 2011-06-23 00:00:00 -04:00
|
|
19
19
|
default_executable: chef-vpc-toolkit
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|