Added a git deployment helper script

This commit is contained in:
Dionysus 2023-06-27 20:56:21 -04:00
parent 8fa7c7cb1d
commit 6eda3c5f50
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 13 additions and 0 deletions

13
assets/deploy-git Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
# git deployment for stagit - developed by acidvegas (https://git.acid.vegas/stagit)
[ ! $(grep -q /usr/bin/git-shell /etc/shells) ] && echo "/usr/bin/git-shell" >> /etc/shells
[ ! $(getent passwd git) ] && userdel -f git
useradd -d /srv/git -k /dev/null -m -s /usr/bin/git-shell -U git
mkdir -p /srv/git/git-shell-commands
# wget git-shells-command repo script
chmod +x /srv/git/git-shell-commands/* && chown -R git:git /srv/git/git-shell-commands
usermod -p '*' git
echo -e "[Unit]\nDescription=Start Git Daemon\n\n[Service]\nExecStart=/usr/bin/git daemon --reuseaddr --base-path=/srv/git/ /srv/git/\n\nRestart=always\nRestartSec=500ms\nUser=git\nGroup=git\n\n[Install]\nWantedBy=multi-user.target" > /etc/systemd/system/git-daemon.service
systemctl start git-daemon && systemctl enable git-daemon
echo "Be sure to use 'AuthorizedKeysFile /etc/ssh/authorized_keys/%u' in your /etc/ssh/sshd_config"
echo "Add your public key to /etc/ssh/authorized_keys/git prefixed with 'no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty'"