mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2025-10-11 11:50:05 +00:00
Added blog cron job, setup zsh & powerlevel10k theme
This commit is contained in:
7
templates/.gitconfig
Normal file
7
templates/.gitconfig
Normal file
@@ -0,0 +1,7 @@
|
||||
[user]
|
||||
email = openpunk@proton.me
|
||||
name = OpenPunk
|
||||
[core]
|
||||
editor = nano
|
||||
[pull]
|
||||
rebase = true
|
26
templates/blog/deadswitch
Normal file
26
templates/blog/deadswitch
Normal file
@@ -0,0 +1,26 @@
|
||||
#! /bin/bash
|
||||
# This is meant to be run by cron, just setup a cronjob to run this script every day or so
|
||||
# This script checks if a file ($fileSwitch) is last modified > $dayLimit days ago & if so a script is run
|
||||
# On your computer or laptop, setup a cronjob to run an ssh command to modify $fileSwitch every couple hours or so.
|
||||
|
||||
fileTrigger="$HOME/.deadtrigger"
|
||||
fileLock="$HOME/.deadlock" # if this file exists, the deadmans switch will be disabled. This file is automatically created when the switch is pulled
|
||||
scriptToRun="$HOME/deadman/imdead.sh"
|
||||
dayLimit=14 # 14 day trigger
|
||||
|
||||
# if our file lock exists, we already ran OR the switch has been disabled on purpose
|
||||
if [ -f "$fileLock" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# time has to be in seconds so dayLimit (days) * 24 (hours in a day) * 60 (mins in an hour) * 60 (seconds in a min)
|
||||
let "triggerTime=$dayLimit * 24 * 60 * 60"
|
||||
let "lastPing=$(stat -c %Y $fileTrigger)"
|
||||
let "currTime=$(date +%s)"
|
||||
let "dTime=$currTime-$lastPing"
|
||||
echo $dTime
|
||||
if [ $dTime -gt $triggerTime ]
|
||||
then
|
||||
touch $fileLock
|
||||
bash $scriptToRun
|
||||
fi
|
19
templates/blog/imdead.sh
Normal file
19
templates/blog/imdead.sh
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd $HOME/deadman
|
||||
|
||||
postTemplate='dead.md'
|
||||
pageName='openpunk/content/pages/dead.md'
|
||||
currDate=$(date '+%Y-%m-%d')
|
||||
|
||||
git clone git@github.com:CPunch/openpunk.git
|
||||
cp $postTemplate $pageName
|
||||
|
||||
# replace our {{DATE}} with the current date
|
||||
sed -i 's/{{DATE}}/'$currDate'/g' $pageName
|
||||
|
||||
# commit & push the post
|
||||
cd openpunk
|
||||
git add .
|
||||
git commit -m "DeadSwitch: Posted dead message"
|
||||
git push
|
5
templates/blog/updateBlog
Normal file
5
templates/blog/updateBlog
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
cd /var/www/{{ domain }}
|
||||
/usr/bin/git fetch origin
|
||||
/usr/bin/git reset --hard origin/main
|
||||
/usr/bin/hugo
|
@@ -2,6 +2,16 @@ APP_NAME = OpenPunk Gitea
|
||||
RUN_USER = gitea
|
||||
RUN_MODE = prod
|
||||
|
||||
[database]
|
||||
DB_TYPE = sqlite3
|
||||
HOST = 127.0.0.1:5432
|
||||
NAME = gitea
|
||||
USER = gitea
|
||||
PASSWD =
|
||||
SSL_MODE = disable
|
||||
CHARSET = utf8
|
||||
PATH = /var/lib/gitea/data/gitea.db
|
||||
|
||||
[repository]
|
||||
ROOT = /var/lib/gitea/gitea-repositories
|
||||
|
||||
|
Reference in New Issue
Block a user