Skip to content

Commit 8f47ea3

Browse files
bwannmeta-codesync[bot]
authored andcommitted
fb_bind: should_quote list fix (#351)
Summary: - 'transfer-source-v6' is a option that was being quoted when it shouldn't be, this adds it to the no-quote-list - re-alphabetize list ```ruby 'notify-source-v6' => node['ip6address'], 'transfer-source-v6' => node['ip6address'], resulted in a validation failure: notify-source-v6 2600:3c00::2000:d5ff:fe0f:454f; transfer-source-v6 "2600:3c00::2000:d5ff:fe0f:454f"; ``` the 'notify-source-v6' was being written correctly by matching the 'no' in the list. This change fixes transfer-source-v6. Pull Request resolved: #351 Reviewed By: michel-slm Differential Revision: D91362650 Pulled By: dafyddcrosby fbshipit-source-id: ba0098eaed8b3c42b55779c77dec737d4b660d1c
1 parent bfdd618 commit 8f47ea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookbooks/fb_bind/libraries/helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def self.indent(lvl)
2727

2828
def self.address_match_key?(key)
2929
key.start_with?(
30-
*%w{allow acl blackhole deny keep no response sort match},
30+
*%w{acl allow blackhole deny keep match no response sort transfer},
3131
)
3232
end
3333

0 commit comments

Comments
 (0)