- Add missing new files!
This commit is contained in:
parent
1ffaa822e6
commit
57fc0d82a5
33
sbin/docker_mk_dir
Executable file
33
sbin/docker_mk_dir
Executable file
@ -0,0 +1,33 @@
|
||||
#!/bin/bash
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
set -o errexit
|
||||
|
||||
|
||||
|
||||
grep -e _LOG_ -e _LIB_ .env | grep -e _EXT= | while read line
|
||||
do
|
||||
OIFS=$IFS
|
||||
IFS="="
|
||||
|
||||
set $line
|
||||
|
||||
IFS=$OIFS
|
||||
|
||||
|
||||
grep $1 compose.yaml >/dev/null
|
||||
|
||||
if [[ "$?" == "0" ]]
|
||||
then
|
||||
eval echo $2
|
||||
fi
|
||||
done | sort -u | while read dir
|
||||
do
|
||||
echo "Add/Create: [${dir}]"
|
||||
|
||||
mkdir -p ${dir}
|
||||
echo -e '# Ignore everything in this directory\n*\n# Except this file\n!.gitignore' > ${dir}/.gitignore
|
||||
|
||||
git add ${dir}/.gitignore
|
||||
done
|
||||
|
48
sbin/docker_tools_install
Executable file
48
sbin/docker_tools_install
Executable file
@ -0,0 +1,48 @@
|
||||
#!/bin/bash
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
set -o errexit
|
||||
|
||||
DOCKER_TOOLS_HOME_DIR="$(dirname "$(dirname "$0")")"
|
||||
|
||||
if [[ "$1" == "" ]]
|
||||
then
|
||||
APPL_HOME_DIR="$PWD"
|
||||
else
|
||||
APPL_HOME_DIR="$1"
|
||||
fi
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
function link_create
|
||||
{
|
||||
source="$1"
|
||||
target="$2"
|
||||
|
||||
if [[ -d "$target" ]]
|
||||
then
|
||||
real_target=${target}/$( basename "${source}")
|
||||
else
|
||||
real_target=${target}
|
||||
fi
|
||||
|
||||
if [[ -e "${real_target}" ]]
|
||||
then
|
||||
mv ${real_target} ${real_target}.old
|
||||
fi
|
||||
|
||||
ln -s ${source} ${target}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
DOCKER_TOOLS_HOME_DIR=$( realpath --relative-to ${APPL_HOME_DIR} ${DOCKER_TOOLS_HOME_DIR})
|
||||
cd ${APPL_HOME_DIR}
|
||||
|
||||
|
||||
link_create ${DOCKER_TOOLS_HOME_DIR}/sbin .
|
||||
|
||||
link_create env.dist env
|
Loading…
Reference in New Issue
Block a user