Skip to content
Snippets Groups Projects
git-puller.service 236 B
Newer Older
[Unit]
Description=Git pull on every git repo

[Service]
Type=oneshot
TimeoutStartSec=0
ExecStart=/bin/bash -euxc ' \
Pierre Ozoux's avatar
Pierre Ozoux committed
  for directory in `find /data/domains/ -name .git -type d -prune`;do \
    cd $directory; \
    git pull; \
  done'