mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 05:27:01 +01:00
IMP: new tag in file to tell that the script should pass shellcheck
The `# run-shellchek` tag must be placed in the first 10 lines of the file
This commit is contained in:
parent
13c88c7da2
commit
e8ae07c2e8
@ -1,4 +1,7 @@
|
||||
#!/bin/bash
|
||||
# run-shellcheck
|
||||
# usage : $0 [shell script to check]
|
||||
# called without arguments, il will shellcheck any *.sh file found in the project
|
||||
set -e
|
||||
|
||||
dockerfile="$(dirname "$0")/Dockerfile.shellcheck"
|
||||
|
@ -1,7 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# run-shellcheck
|
||||
# please do not run this script directly but `docker_build_and_run_shellcheck.sh`
|
||||
|
||||
files=""
|
||||
retval=0
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
files=$(find . -name "*.sh")
|
||||
@ -10,6 +12,11 @@ else
|
||||
fi
|
||||
|
||||
for f in $files; do
|
||||
printf "\e[1;36mRunning shellcheck on: %s \e[0m\n" "$f"
|
||||
/usr/bin/shellcheck --color=always --external-sources --shell=bash "$f"
|
||||
if head "$f" | grep -qE "^# run-shellcheck$"; then
|
||||
printf "\e[1;36mRunning shellcheck on: %s \e[0m\n" "$f"
|
||||
if ! /usr/bin/shellcheck --color=always --external-sources --shell=bash "$f"; then
|
||||
retval=$((retval + 1))
|
||||
fi
|
||||
fi
|
||||
done
|
||||
exit "$retval"
|
||||
|
@ -1,5 +1,6 @@
|
||||
#! /bin/bash
|
||||
# This file builds a docker image for testing the targeted debian version
|
||||
# run-shellcheck
|
||||
set -e
|
||||
|
||||
target=""
|
||||
|
@ -1,7 +1,9 @@
|
||||
# run-shellcheck
|
||||
test_audit() {
|
||||
describe Running void to generate the conf file that will later be edited
|
||||
# shellcheck disable=2154
|
||||
/opt/debian-cis/bin/hardening/"${script}".sh || true
|
||||
# shellcheck disable=2016
|
||||
echo 'EXCEPTIONS="$EXCEPTIONS /usr/lib/dbus-1.0/dbus-daemon-launch-helper"' >> /opt/debian-cis/etc/conf.d/"${script}".cfg
|
||||
|
||||
describe Running on blank host
|
||||
|
@ -1,3 +1,4 @@
|
||||
# run-shellcheck
|
||||
test_audit() {
|
||||
describe Running on blank host
|
||||
register_test retvalshouldbe 0
|
||||
|
@ -1,3 +1,4 @@
|
||||
# run-shellcheck
|
||||
test_audit() {
|
||||
describe Running on blank host
|
||||
register_test retvalshouldbe 0
|
||||
|
@ -1,3 +1,4 @@
|
||||
# run-shellcheck
|
||||
test_audit() {
|
||||
describe Running on blank host
|
||||
register_test retvalshouldbe 0
|
||||
|
@ -1,3 +1,4 @@
|
||||
# run-shellcheck
|
||||
test_audit() {
|
||||
describe Running on blank host
|
||||
register_test retvalshouldbe 0
|
||||
|
@ -1,3 +1,4 @@
|
||||
# run-shellcheck
|
||||
test_audit() {
|
||||
describe Running on blank host
|
||||
register_test retvalshouldbe 0
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
# run-shellcheck
|
||||
# stop on any error
|
||||
set -e
|
||||
# stop on undefined variable
|
||||
|
@ -1,4 +1,5 @@
|
||||
# shellcheck shell=bash
|
||||
# run-shellcheck
|
||||
###########################################
|
||||
# Assertion functions for funcional tests #
|
||||
###########################################
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
# run-shellcheck
|
||||
# usage : $0 [--nodel|--nowait] [1.1_script-to-test.sh...]
|
||||
# --nodel will keep logs
|
||||
# --nowait will not wait for you to see logs
|
||||
|
Loading…
Reference in New Issue
Block a user