diff --git a/examples/profile/controls/example-tmp.rb b/examples/profile/controls/example-tmp.rb index e0806fd82..02638b4a8 100644 --- a/examples/profile/controls/example-tmp.rb +++ b/examples/profile/controls/example-tmp.rb @@ -3,14 +3,14 @@ title '/tmp profile' # you add controls here -control "tmp-1.0" do # A unique ID for this control +control 'tmp-1.0' do # A unique ID for this control impact 0.7 # The criticality, if this control fails. - title "Create /tmp directory" # A human-readable title - desc "An optional description..." # Describe why this is needed - desc "label", "An optional description with a label" # Pair a part of the description with a label - tag data: "temp data" # A tag allows you to associate key information - tag "security" # to the test - ref "Document A-12", url: 'http://...' # Additional references + title 'Create /tmp directory' # A human-readable title + desc 'An optional description...' # Describe why this is needed + desc 'label', 'An optional description with a label' # Pair a part of the description with a label + tag data: 'temp data' # A tag allows you to associate key information + tag 'security' # to the test + ref 'Document A-12', url: 'http://...' # Additional references describe file('/tmp') do # The actual test it { should be_directory } diff --git a/examples/profile/controls/meta.rb b/examples/profile/controls/meta.rb index 6834f61c7..3e2bd3990 100644 --- a/examples/profile/controls/meta.rb +++ b/examples/profile/controls/meta.rb @@ -8,8 +8,8 @@ control 'ssh-1' do The default setting in /etc/ssh/sshd_config is correct, and can be verified by ensuring that the following line appears: Protocol 2' - tag 'production','development' - tag 'ssh','sshd','openssh-server' + tag 'production', 'development' + tag 'ssh', 'sshd', 'openssh-server' tag cce: 'CCE-27072-8' tag disa: 'RHEL-06-000227'