mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
9 lines
202 B
Bash
9 lines
202 B
Bash
|
|
#!/bin/sh -e
|
||
|
|
|
||
|
|
git init --bare $HOME/cdba-admin
|
||
|
|
install -m 755 post-receive $HOME/cdba-admin/hooks/
|
||
|
|
install -m 755 update $HOME/cdba-admin/hooks/
|
||
|
|
|
||
|
|
mkdir -p $HOME/bin
|
||
|
|
install -m 755 cdba-shell $HOME/bin/
|