Skip to content
Snippets Groups Projects
Commit 2882e242 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

Add -eu to all bash shebangs

ansible requires to either use "#!/bin/bash -eu" or "#!/bin/bash -eux"
for bash shebangs.
parent f056775d
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#!/bin/bash -eu
master=$1
if [ -z "$master" ]; then
......
#!/bin/bash
#!/bin/bash -eu
NUM=${1-1000}
FILE="groups.json"
......
#!/bin/bash
#!/bin/bash -eu
TOPDIR=$(readlink -f "$(dirname "$0")/../..")
pushd "${TOPDIR}" >/dev/null || exit 1
......
#!/bin/bash
#!/bin/bash -eu
NUM=${1-1000}
FILE="users.json"
......
#!/bin/bash
#!/bin/bash -eu
NUM=1000
FILE="users_absent.json"
......
#!/bin/bash
#!/bin/bash -eu
#
# Build Ansible Collection from ansible-freeipa repo
#
......
#!/bin/bash
#!/bin/bash -eu
git_version=$(git describe --tags | sed -e "s/^v//")
version=${git_version%%-*}
......
#!/bin/bash
#!/bin/bash -eu
for i in roles/ipa*/*/*.py; do
python utils/gen_module_docs.py "$i"
......
#!/bin/bash
#!/bin/bash -eu
INFO="\033[37;1m"
WARN="\033[33;1m"
......
#!/bin/bash
#!/bin/bash -eu
# -*- coding: utf-8 -*-
# Authors:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment