Compare commits
8 commits
a21a21be9a
...
10280bcdd9
Author | SHA1 | Date | |
---|---|---|---|
10280bcdd9 | |||
ad00afc4cc | |||
71cd517840 | |||
c1aad03c68 | |||
ee1357194b | |||
7248db6bca | |||
6890791909 | |||
e1607151ee |
10 changed files with 23 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
FILE="$(realpath "${BASH_SOURCE[0]}")"
|
||||
ROOT="$(dirname "${FILE}")"
|
||||
|
||||
COMMANDS='cmd'
|
||||
KEY_ALGORITHM='ed25519'
|
||||
KEY_DIRECTORY='.ssh'
|
||||
KEY_PATH="${KEY_DIRECTORY}/id_${KEY_ALGORITHM}"
|
||||
|
@ -8,6 +12,15 @@ PACKAGES=(
|
|||
'tree'
|
||||
)
|
||||
SERVER="$(basename ${GITHUB_SERVER_URL})"
|
||||
TARGET='/usr/local/sbin'
|
||||
|
||||
# commands
|
||||
cd "${ROOT}/${COMMANDS}" \
|
||||
|| exit
|
||||
for file in *.sh ; do
|
||||
cp "${file}" "${TARGET}/${file%.sh}" \
|
||||
|| exit
|
||||
done
|
||||
|
||||
# ssh
|
||||
cd \
|
||||
|
@ -24,4 +37,8 @@ echo "${SERVER} ssh-${KEY_ALGORITHM} ${KEY_PUBLIC}" \
|
|||
|| exit
|
||||
|
||||
# packages
|
||||
apt-get install --yes "${PACKAGES[@]}"
|
||||
apt-get install --yes "${PACKAGES[@]}" \
|
||||
|| exit
|
||||
|
||||
# remove
|
||||
rm --force --recursive "${ROOT}"
|
|
@ -1,2 +0,0 @@
|
|||
unset TOP_SECRET
|
||||
env | sort
|
8
cd.sh
8
cd.sh
|
@ -5,7 +5,6 @@ PACKAGES=(
|
|||
'git'
|
||||
)
|
||||
REPOSITORY='rwx.work/cd'
|
||||
TARGET='/usr/local/sbin'
|
||||
|
||||
for nameserver in "${NAMESERVERS[@]}" ; do
|
||||
echo "nameserver ${nameserver}" \
|
||||
|
@ -19,9 +18,10 @@ apt-get update \
|
|||
apt-get install --yes "${PACKAGES[@]}" \
|
||||
|| exit
|
||||
|
||||
DIRECTORY="$(mktemp --directory)" \
|
||||
|| exit
|
||||
git clone \
|
||||
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
||||
"${TARGET}" \
|
||||
"${DIRECTORY}" \
|
||||
|| exit
|
||||
|
||||
cd-bootstrap.sh
|
||||
"${DIRECTORY}/bootstrap.sh"
|
||||
|
|
1
cmd/cd-list-environment.sh
Executable file
1
cmd/cd-list-environment.sh
Executable file
|
@ -0,0 +1 @@
|
|||
env | sort
|
Loading…
Reference in a new issue