Merge pull request #872 from QuentinMoss/mysql-server-id

MODULES-3711 - Add limit to mysql server ID generated value
This commit is contained in:
Bryan Jen 2016-08-12 07:56:54 -07:00 committed by GitHub
commit d5d9d2ab8c
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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