Skip to content
Snippets Groups Projects
Commit 98479f5e authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "tools: use /usr/bin/env bash instead of /bin/bash"

parents 0858d548 839ec629
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#!/usr/bin/env bash
containers_running=$(sudo docker ps --filter "label=kolla_version" --format "{{.Names}}")
......
#!/bin/bash
#!/usr/bin/env bash
# Spawning the neutron agents containers leaves artifacts on the host.
# This script removes these artifacts.
......
#!/bin/bash
#!/usr/bin/env bash
# Move to top level directory
REAL_PATH=$(python -c "import os;print os.path.realpath('$0')")
......
#!/bin/bash
#!/usr/bin/env bash
echo "##### System Identification #####"
egrep -w 'PRETTY_NAME|VERSION_ID' /etc/os-release
......
#!/bin/bash
#!/usr/bin/env bash
set -o errexit
set -o pipefail
......
#!/bin/bash
#!/usr/bin/env bash
#
# This script can be used to interact with kolla via ansible.
......
#!/bin/bash
#!/usr/bin/env bash
ANSIBLE=`find ansible -type f -exec cat {} \; | wc -l`
DOCKER=`find docker -type f -exec cat {} \; | wc -l`
......
#!/bin/bash
#!/usr/bin/env bash
_XTRACE_OVS_DPDK_CTL=$(set +o | grep xtrace)
if [[ "${OVS_DPDK_CTL_DEBUG}" == "True" ]]; then
......
#!/bin/bash
#!/usr/bin/env bash
TOPLEVEL=$(git rev-parse --show-toplevel)
RES=0
......
#!/bin/bash
#!/usr/bin/env bash
# Ignore E006 -- line length greater than 80 char
# Error on E005 -- file does not begin with #! or have .sh prefix
......
#!/bin/bash
#!/usr/bin/env bash
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
cd "$(dirname "$REAL_PATH")/.."
......
#!/bin/bash
#!/usr/bin/env bash
#
# This script can be used to check user privilege to execute
# docker commands
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment