mirror of
https://github.com/vvzvlad/vestasync.git
synced 2024-11-05 14:59:12 +03:00
9 lines
351 B
Bash
9 lines
351 B
Bash
#!/usr/bin/env sh
|
|
echo $(hostname) > /mnt/data/etc/vestasync/hostname
|
|
export GIT_AUTHOR_NAME="vestasync_wb_$(hostname)"
|
|
export GIT_COMMITTER_NAME="vestasync_wb_$(hostname)"
|
|
cd /mnt/data/etc/ > /dev/null 2>&1 || true
|
|
git add . > /dev/null 2>&1 || true
|
|
git commit -m "$(date)" > /dev/null 2>&1 || true
|
|
git push -u origin master > /dev/null 2>&1 || true
|