Merge pull request #872 from QuentinMoss/mysql-server-id
MODULES-3711 - Add limit to mysql server ID generated value
This commit is contained in:
commit
d5d9d2ab8c
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
def get_mysql_id
|
||||
Facter.value(:macaddress).split(':').inject(0) { |total,value| (total << 6) + value.hex }
|
||||
Facter.value(:macaddress).split(':')[2..-1].inject(0) { |total,value| (total << 6) + value.hex }
|
||||
end
|
||||
|
||||
Facter.add("mysql_server_id") do
|
||||
|
|
|
@ -11,7 +11,7 @@ describe Facter::Util::Fact do
|
|||
Facter.fact(:macaddress).stubs(:value).returns('3c:97:0e:69:fb:e1')
|
||||
end
|
||||
it do
|
||||
Facter.fact(:mysql_server_id).value.to_s.should == '66961985441'
|
||||
Facter.fact(:mysql_server_id).value.to_s.should == '4116385'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue