This commit is contained in:
fosslinux 2019-02-16 09:28:46 +11:00
parent a883ce7a48
commit 6087ae9468
3 changed files with 10 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
libreoffice/.config/libreoffice/4/.lock
weechat/.weechat/logs
mixxx/.mixxx/*.log*
my-cron

View File

@ -15,6 +15,12 @@ bash-install:
burrow-install:
$(STOW_INSTALL) burrow
cron-pubnix-install:
cat ~/dotfiles/cron/pubnix-cron >> ~/dotfiles/my-cron
cron-install:
if [ -e ~/dotfiles/my-cron ] ; then crontab ~/dotfiles/my-cron ; fi
gimp-install:
$(STOW_INSTALL) gimp
@ -151,7 +157,7 @@ install-base: bash-install oh-my-zsh-install ssh-install tmux-install vim-instal
install-home: install-base burrow-install gimp-install git-install gnupg-install pavucontrol-install thunar-install vlc-install wget-install xarchiver-install youtube-dl-install
install-pubnix: install-base burrow-install gnupg-install wget-install
install-pubnix: install-base burrow-install gnupg-install wget-install cron-install-pubnix
install-team: install-pubnix youtube-dl-install

2
cron/pubnix-cron Normal file
View File

@ -0,0 +1,2 @@
0,30 * * * * cd ~/public_html && git pull >/dev/null 2>&1
0 * * * * cd ~/dotfiles && git pull | sed '/Already up to date/d'