85 lines
1.7 KiB
Bash
85 lines
1.7 KiB
Bash
|
#!/bin/bash
|
||
|
# ci.sh: Helper script to automate deployment operations on CI/CD
|
||
|
# Copyright © 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
||
|
#
|
||
|
# This program is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU Affero General Public License as
|
||
|
# published by the Free Software Foundation, either version 3 of the
|
||
|
# License, or (at your option) any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU Affero General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU Affero General Public License
|
||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
set -xEeuo pipefail
|
||
|
#source $(pwd)/scripts/lib.sh
|
||
|
|
||
|
readonly SSH_ID_FILE=/tmp/ci-ssh-id
|
||
|
|
||
|
match_arg() {
|
||
|
if [ $1 == $2 ] || [ $1 == $3 ]
|
||
|
then
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
help() {
|
||
|
cat << EOF
|
||
|
USAGE: ci.sh [SUBCOMMAND]
|
||
|
Helper script to automate deployment operations on CI/CD
|
||
|
|
||
|
Subcommands
|
||
|
|
||
|
-c --clean cleanup secrets, SSH key and other runtime data
|
||
|
-i --init <SSH_PRIVATE_KEY> initialize environment, write SSH private to file
|
||
|
-h --help print this help menu
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
# $1: SSH private key
|
||
|
write_ssh(){
|
||
|
truncate --size 0 $SSH_ID_FILE
|
||
|
echo "$1" > $SSH_ID_FILE
|
||
|
chmod 600 $SSH_ID_FILE
|
||
|
}
|
||
|
|
||
|
|
||
|
clean() {
|
||
|
if [ -f $SSH_ID_FILE ]
|
||
|
then
|
||
|
shred $SSH_ID_FILE
|
||
|
rm $SSH_ID_FILE
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
if (( "$#" < 1 ))
|
||
|
then
|
||
|
help
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
|
||
|
if match_arg $1 '-i' '--init'
|
||
|
then
|
||
|
if (( "$#" < 2 ))
|
||
|
then
|
||
|
help
|
||
|
exit -1
|
||
|
fi
|
||
|
write_ssh "$2"
|
||
|
elif match_arg $1 '-c' '--clean'
|
||
|
then
|
||
|
clean
|
||
|
elif match_arg $1 '-h' '--help'
|
||
|
then
|
||
|
help
|
||
|
else
|
||
|
help
|
||
|
fi
|