Compare commits

..

No commits in common. "cad3690da319cc5417f6949a0b967b664915151c" and "4aa1631e50be808a0e541028b9d4ccc5055fe35c" have entirely different histories.

4 changed files with 2 additions and 42 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
build/credentials
build/deb/*.deb

View File

@ -1,2 +0,0 @@
GITEA_USER=damage
GITEA_PASS=1c3bf0cbb22728f204b45e7a02a10dc6d28ae9dc

View File

@ -1,37 +0,0 @@
#!/bin/bash
NAME=s3h
VERSION=1.0
REVISION=1
ARCH=all
curdir=`dirname $0`
workdir="$curdir/${NAME}_${VERSION}-${REVISION}_${ARCH}"
mkdir -p "$workdir"
mkdir -p "$workdir/usr/bin"
cp "$curdir/../../s3h.sh" "$workdir/usr/bin/s3h"
chmod 0777 "$workdir/usr/bin/s3h"
mkdir "$workdir/DEBIAN"
cat << EOT > "$workdir/DEBIAN/control"
Package: $NAME
Version: $VERSION
Architecture: $ARCH
Maintainer: Daniel Buschke <damage@devloop.de>
Description: SSH Session Manager for CLI
s3h is a SSH Session Manager which is completly running on cli.
Homepage: https://source.devloop.de/damage/s3h
Depends: dialog
EOT
dpkg-deb --build --root-owner-group "$workdir"
source "$curdir/../credentials"
curl --user "$GITEA_USER:$GITEA_PASS" \
--upload-file "${NAME}_${VERSION}-${REVISION}_${ARCH}.deb" \
https://source.devloop.de/api/packages/damage/debian/pool/stable/main/upload
rm -rf "$workdir"

3
s3h.sh
View File

@ -51,6 +51,8 @@ while [[ -z "$configFile" ]]; do
fi
done
echo "config file '$configFile' selected. connecting..."
# read config file and connect
if [[ -f "$configFile" ]]; then
# each line equals one config option
@ -61,7 +63,6 @@ if [[ -f "$configFile" ]]; then
# clear screen // remove dialog colors
clear
echo "config file '$configFile' selected. connecting..."
# execute ssh
ssh ${para[@]} `basename "$configFile"`