blob: b1bba4d698e078757dc32a4392daf9930c2f3d5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
Facter.add(:domain) do
setcode do
# Get the domain from various sources; the order of these
# steps is important
Facter.value(:hostname)
next $domain if defined? $domain and ! $domain.nil?
domain = Facter::Util::Resolution.exec('dnsdomainname')
next domain if domain =~ /.+\..+/
domain = Facter::Util::Resolution.exec('domainname')
next domain if domain =~ /.+\..+/
if FileTest.exists?("/etc/resolv.conf")
domain = nil
search = nil
File.open("/etc/resolv.conf") { |file|
file.each { |line|
if line =~ /domain\s+(\S+)/
domain = $1
elsif line =~ /search\s+(\S+)/
search = $1
end
}
}
next domain if domain
next search if search
end
nil
end
end
Facter.add(:domain) do
confine :kernel => :windows
setcode do
require 'win32ole'
domain = ""
wmi = WIN32OLE.connect("winmgmts://")
query = "select DNSDomain from Win32_NetworkAdapterConfiguration where IPEnabled = True"
wmi.ExecQuery(query).each { |nic|
domain = nic.DNSDomain
break
}
domain
end
end
|