Correctly fix aliases quoting logic (#206)
We were previously incorrectly adding double quotes for the alias values. According to the man page it's not required. However, there is a requirement if its a command being pipe. In addition, the man page mentions this for the alias name: The name is a local address (no domain part). Use double quotes when the name contains any special characters such as whitespace, `#', `:', or `@'. The name is folded to lowercase, in order to make database lookups case insensitive. This includes logic to support this automatically. - Add new tests for aliases testing all types - Convert all serverspec tests to inspec - Add Github actions - Update platforms to test Signed-off-by: Lance Albertson <lance@osuosl.org>
This commit is contained in:
17
test/integration/canonical/controls/canonical.rb
Normal file
17
test/integration/canonical/controls/canonical.rb
Normal file
@@ -0,0 +1,17 @@
|
||||
recipient_canonical =
|
||||
case os.family
|
||||
when 'suse'
|
||||
'/etc/postfix/recipient_canonical.lmdb'
|
||||
else
|
||||
'/etc/postfix/recipient_canonical.db'
|
||||
end
|
||||
|
||||
control 'canonical' do
|
||||
describe file recipient_canonical do
|
||||
it { should be_file }
|
||||
end
|
||||
|
||||
describe file '/etc/postfix/main.cf' do
|
||||
its('content') { should match(%r{^\s*recipient_canonical_maps\s*=.*\/etc\/postfix\/recipient_canonical\s*$}) }
|
||||
end
|
||||
end
|
||||
1
test/integration/canonical/inspec.yml
Normal file
1
test/integration/canonical/inspec.yml
Normal file
@@ -0,0 +1 @@
|
||||
name: canonical
|
||||
@@ -1,23 +0,0 @@
|
||||
# Copyright:: 2012-2019, Chef Software, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
require_relative './spec_helper'
|
||||
|
||||
describe file('/etc/postfix/recipient_canonical.db') do
|
||||
it { should be_file }
|
||||
end
|
||||
|
||||
describe file('/etc/postfix/main.cf') do
|
||||
its(:content) { should match(%r{^\s*recipient_canonical_maps\s*=.*\/etc\/postfix\/recipient_canonical\s*$}) }
|
||||
end
|
||||
Reference in New Issue
Block a user