File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
def mysql_id_get
2
- Facter . value ( :macaddress ) . split ( ':' ) [ 2 ..-1 ] . reduce ( 0 ) { |total , value | ( total << 6 ) + value . hex }
2
+ # Convert the existing mac to an integer
3
+ macval = Facter . value ( :macaddress ) . delete ( ':' ) . to_i ( 16 )
4
+
5
+ # Valid range is from 1 - 4294967295 for replication hosts.
6
+ # We can not guarantee a fully unique value, this reduces the
7
+ # full mac value down to into that number space.
8
+ #
9
+ # The -1/+1 ensures that we keep above 1 if we get unlucky
10
+ # enough to hit a mac address that evenly divides.
11
+ ( macval % ( 4_294_967_295 - 1 ) ) + 1
3
12
end
4
13
5
14
Facter . add ( 'mysql_server_id' ) do
Original file line number Diff line number Diff line change 11
11
Facter . fact ( :macaddress ) . stubs ( :value ) . returns ( '3c:97:0e:69:fb:e1' )
12
12
end
13
13
it do
14
- Facter . fact ( :mysql_server_id ) . value . to_s . should == '4116385 '
14
+ Facter . fact ( :mysql_server_id ) . value . to_s . should == '241857808 '
15
15
end
16
16
end
17
17
20
20
Facter . fact ( :macaddress ) . stubs ( :value ) . returns ( '00:00:00:00:00:00' )
21
21
end
22
22
it do
23
- Facter . fact ( :mysql_server_id ) . value . to_s . should == '0 '
23
+ Facter . fact ( :mysql_server_id ) . value . to_s . should == '1 '
24
24
end
25
25
end
26
26
You can’t perform that action at this time.
0 commit comments