aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-09-09 19:36:21 +0200
committerKarel Kočí <cynerd@email.cz>2016-09-09 19:36:21 +0200
commit914ff39de8af7621d3d7a7abaec4828740a21952 (patch)
tree2ab970d234672492506b608173e170e93ffde03d /install
parent6548be01a73d09c20f8ff4b1bca3af2cba5b7639 (diff)
downloadmyconfigs-914ff39de8af7621d3d7a7abaec4828740a21952.tar.gz
myconfigs-914ff39de8af7621d3d7a7abaec4828740a21952.tar.bz2
myconfigs-914ff39de8af7621d3d7a7abaec4828740a21952.zip
install script support git repositories
Diffstat (limited to 'install')
-rwxr-xr-xinstall32
1 files changed, 31 insertions, 1 deletions
diff --git a/install b/install
index a4a7b73..b71a5e1 100755
--- a/install
+++ b/install
@@ -34,19 +34,49 @@ diff() {
echo ERROR: Directory without trailing slash detected: $1
exit 1
fi
+ # Got trough all files ignoring git repositories
for f in `find "$1" \( -type d -exec test -e '{}'/.git \; \) -prune -o -type f -print`; do
F="${f#$1}"
- echo $f
dodiff "$1/$F" "$2/$F"
done
+ # Check if we have all directories ignoring those in git repositories
+ for d in `find "$1" -type d -print -exec test -e '{}'/.git \; -prune`; do
+ D="${d#$1}"
+ if [ ! -d "$2/$D" ]; then
+ echo "Directory not installed: $1/$D => $2/$D"
+ read -p "Install? (Y/n) "
+ if [[ $REPLY =~ ^[Yy]?$ ]]; then
+ doinst "$1/$D/" "$2/$D"
+ fi
+ fi
+ done
+ # Now checkout git repositories
+ for g in `find "$1" -name .git -type f -printf '%h '`; do
+ G="${g#$1}"
+ COMMIT=$( cd "$1/$G" && git rev-parse HEAD )
+ echo "Checkout of git repository: $2/$G"
+ ( cd "$2/$G" && git --work-tree=. checkout -f "$COMMIT" )
+ done
else
dodiff "$1" "$2"
fi
}
+# Managing two git trees with master has small inconvenience that git allows only
+# single branch checkout in all work trees, so as it sets now git will execute all
+# commands not on deployed tree but on tree in this repository, so we need specify
+# work tree on command line every time we want target deployed work tree.
doinst() {
echo rsync -rlpt $1 $2
rsync -rlpt $1 $2
+ # Now edit all .git files in target directory
+ for g in `find "$2" -name '.git' -type f`; do
+ if ! grep -q "gitdir: " "$g"; then
+ continue # Probably not a git repository or who knows.
+ fi
+ echo "Pointing git repository $g to this repository"
+ echo gitdir: $PWD/.git`sed "s/^gitdir: [./]*git//" "$g"` > "$g"
+ done
}
inst() {
if [ -e "$2" ]; then