diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-07-04 18:12:10 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-07-04 18:46:35 +0530 |
| commit | 2cd9a4039c0c5f524df0a33605c9baef1f57917e (patch) | |
| tree | 5e17ce2f0c78d663cf6f2f7be5abe769dc7a3f71 /setup.sh | |
| parent | ef34b26068c4e25f929a584edda63b8878c063b3 (diff) | |
| download | bacchus-remote-2cd9a4039c0c5f524df0a33605c9baef1f57917e.tar.gz bacchus-remote-2cd9a4039c0c5f524df0a33605c9baef1f57917e.zip | |
Add git shell commands
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -5,7 +5,7 @@ set -eu ROOT_DIR=${ROOT_DIR:-"/opt/project"} configure() { - configure_user && configure_fs && configure_packages && configure_firewall + configure_user && configure_fs && configure_packages && configure_git && configure_firewall } services() { cd "$ROOT_DIR"; docker compose --profile services "$@"; } @@ -22,7 +22,14 @@ stop() { services down; } configure_packages() { apt install \ docker.io docker-buildx docker-compose-v2 \ - ufw + git ufw +} + +configure_git() { + sudo -u git git config --global init.defaultBranch main + # kept explicit shell setup + chsh -s "$(which git-shell)" git + cp -rf "$ROOT_DIR/cgit/ssh/git-shell-commands" /home/git/ } configure_firewall() { @@ -34,7 +41,7 @@ configure_firewall() { configure_user() { groupadd -f -g 1001 git - useradd --shell /usr/sbin/nologin --no-create-home git --uid 1001 --gid 1001 || true + useradd --shell /usr/sbin/nologin git --uid 1001 --gid 1001 || true groupadd -f -g 1002 send useradd --shell /usr/sbin/nologin --no-create-home send --uid 1002 --gid 1002 || true } @@ -54,6 +61,6 @@ update() { cmd="$1"; shift; case "$cmd" in update|start|startfg|stop|services|core) "$cmd" "$@" ;; - configure|configure_firewall|configure_user|configure_fs|configure_packages) "$cmd" "$@" ;; + configure|configure_firewall|configure_user|configure_fs|configure_packages|configure_git) "$cmd" "$@" ;; *) echo "Invalid command: $cmd"; exit 1 ;; esac |
