2020-11-18 15:32:09 -08:00
|
|
|
#!/bin/bash
|
|
|
|
# Shell Repos Environment
|
2020-11-21 08:55:51 -08:00
|
|
|
# echo loading shell.env
|
2020-11-13 10:25:04 -08:00
|
|
|
# if bash is not the shell don't bother to continue
|
|
|
|
[ ! "$SHELL" = "/bin/bash" ] && return 1
|
|
|
|
# sourced for non-login interactive shells
|
|
|
|
# sourced via /etc/bash.bashrc so for all machine users
|
|
|
|
# $BASH_SHELL_BASE # this MUST be set in /etc/profile
|
|
|
|
# $BASH_SHELL_NETWORK/all
|
2020-11-18 15:32:09 -08:00
|
|
|
# $BASH_SHELL_NETWORK/(array of Domains)
|
2020-11-13 10:25:04 -08:00
|
|
|
# $BASH_SHELL_HOST/all
|
|
|
|
# $BASH_SHELL_HOST/<hostname>
|
|
|
|
# also
|
|
|
|
# sourced via $HOME/.bashrc
|
|
|
|
# $HOME/shell or $HOME/BASH_SHELL_USER
|
|
|
|
|
|
|
|
# for the rare interactive login shell
|
|
|
|
# if you don't want the repos above sourced uncomment this next line
|
|
|
|
# $NO_LOGIN_BASHRC=true
|
|
|
|
# this is not effect non-interactive login shells like at user first login
|
|
|
|
|
|
|
|
# within each of those directories if load.sh exits it will be run
|
|
|
|
# otherwise files will be sourced exactly like load.sh in the base
|
|
|
|
|
|
|
|
# Using base shell setup repository
|
|
|
|
# https://git.kebler.net/kebler.net/bash-shell-base.git
|
|
|
|
|
|
|
|
# use these two if you want a common directory for all shell repos
|
|
|
|
# BASH_SHELL_BASE is set in /etc/profile
|
|
|
|
|
|
|
|
# load script in base repo to run
|
|
|
|
export BASH_SHELL_LOAD=$BASH_SHELL_BASE/load.sh # load.sh is default
|
|
|
|
export BASH_SHELL_STARTUP=$BASH_SHELL_BASE/startup.sh # strtup.sh is default
|
|
|
|
|
|
|
|
# if uncommented next line sets up implicit sourcing for non-interactive shells
|
2020-11-27 09:59:16 -08:00
|
|
|
# echo ----NON_INTERACTIVE SHELL INFO-----
|
|
|
|
# echo enabling bash shell repos for non-inactive shell
|
|
|
|
export BASH_ENV=$BASH_SHELL_LOAD # use base repo
|
|
|
|
# echo enabling aliases with non-interactive shell
|
|
|
|
export BASH_USE_ALIAS=true # will source aliases for non-interactive
|
|
|
|
# echo see $BASH_SHELL_BASE/shell.env
|
|
|
|
# echo ---------
|
2020-11-13 10:25:04 -08:00
|
|
|
# if not using implicit sourcing for non-interactive shells then on can do this per script
|
|
|
|
##################
|
2020-11-18 15:32:09 -08:00
|
|
|
# expanding aliases is optional
|
2020-11-13 10:25:04 -08:00
|
|
|
# shopt -s expand_aliases
|
2020-11-18 15:32:09 -08:00
|
|
|
# source $BASH_SHELL_LOAD
|
|
|
|
# < your script code >
|
2020-11-13 10:25:04 -08:00
|
|
|
# shopt -u expand_aliases
|
|
|
|
####################
|
|
|
|
|
2020-11-27 09:59:16 -08:00
|
|
|
# set ssh session if non-interactive only
|
2020-11-23 15:14:18 -08:00
|
|
|
([ -n "$SSH_CONNECTION" ] || [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]) && export SSH_SESSION=true
|
|
|
|
|
2020-11-13 10:25:04 -08:00
|
|
|
# identify a network name that this host resides on
|
2020-11-18 15:32:09 -08:00
|
|
|
# make a directory of the same name
|
2020-11-13 10:25:04 -08:00
|
|
|
# if unset then only /all will be sourced
|
2020-11-20 08:48:48 -08:00
|
|
|
export NETWORK_DOMAINS=(238.kebler.net 645.kebler.net 3115.kebler.net)
|
2020-11-18 15:32:09 -08:00
|
|
|
# network domain folder entry will be made for each domain set, first is home domain, others via vpn
|
|
|
|
if [[ $NETWORK_DOMAINS ]]; then
|
|
|
|
export NETWORK_HOME=${NETWORK_DOMAINS[0]}
|
2020-11-13 10:25:04 -08:00
|
|
|
export BASH_SHELL_NETWORK=/opt/bash/shell/network
|
2020-11-18 15:32:09 -08:00
|
|
|
declare domain
|
|
|
|
BASH_SHELL_NETWORK_DIRS=""
|
|
|
|
for domain in "${NETWORK_DOMAINS[@]}"; do
|
|
|
|
BASH_SHELL_NETWORK_DIRS+="${BASH_SHELL_NETWORK}/${domain} "
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
unset domain
|
|
|
|
export BASH_SHELL_NETWORK_DIRS
|
2020-11-13 10:25:04 -08:00
|
|
|
|
|
|
|
# will use $BASH_SHELL_HOST/<hostname> unless specifically set
|
|
|
|
export BASH_SHELL_HOST=/opt/bash/shell/host
|
|
|
|
|
|
|
|
# by default SHELL sources will be looked for under $HOME/bash/shell
|
|
|
|
# but can be user set below to $HOME/$BASH_SHELL_USER
|
|
|
|
# export BASH_SHELL_USER=<some directory under $HOME>
|
|
|
|
|
2020-11-18 15:32:09 -08:00
|
|
|
temp="
|
|
|
|
$BASH_SHELL_BASE
|
|
|
|
$BASH_SHELL_NETWORK/all
|
|
|
|
${BASH_SHELL_NETWORK_DIRS[@]}
|
|
|
|
$BASH_SHELL_HOST/all
|
|
|
|
$BASH_SHELL_HOST/$(hostname)
|
|
|
|
"
|
|
|
|
|
|
|
|
export BASH_SHELL_DIRS=$(echo $temp)
|
|
|
|
|
|
|
|
# env | grep BASH
|
|
|
|
# env | grep NETWORK_DIRS
|
|
|
|
# echo ---------------------------------
|
|
|
|
# echo $BASH_SHELL_DIRS
|
|
|
|
# echo ---------------------------------
|
|
|
|
|
|
|
|
# now load and export module loading functions library
|
2020-11-13 10:25:04 -08:00
|
|
|
source $BASH_SHELL_BASE/module.lib
|