-
Notifications
You must be signed in to change notification settings - Fork 1
/
archive_pkg.sh
executable file
·33 lines (32 loc) · 1.08 KB
/
archive_pkg.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
SELF=$(realpath ${0})
export GITROOT=${SELF%/*}
export PKG_NAME=${GITROOT##*/}
###########################################################################################
helpdesk()
{
echo -e "Usage: \n $0"
echo "options:"
echo "-h --help Help"
echo "-m --msg Short Message for git commit"
echo "-p --pkg Package Name"
exit 0
}
###########################################################################################
options()
{
while test $# -gt 0; do
case "$1" in
-h|--help) helpdesk;;
-m|--msg) shift; MSGKEY=$1; shift;;
-p|--pkg) shift; PKG_NAME_LIST=$1; shift;;
*) shift;;
esac
done
}
###########################################################################################
options $(echo $@ | tr "=" " ")
###########################################################################################
sh ${GITROOT}/update_pkg.sh
sh ${GITROOT}/addfilesto_pkg.sh
ssh -x utility01 'cd '${GITROOT}'; git commit -a -m "Updated '${PKG_NAME}' for '$(echo ${MSGKEY} | tr "_" " " )'"; git push'