aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki-mass-rebuild
blob: daba2ca4351f10b6c2c0ae3131eab2ec51278e76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
set -e

wikilist=/etc/ikiwiki/wikilist

processline () {
	user="$1"
	setup="$2"
	
	if [ -z "$user" ] || [ -z "$setup" ]; then
		echo "parse failure in /etc/ikiwiki/wikilist, line: '$user $setup'" >&2
		exit 1
	fi
	
	if [ ! -f "$setup" ]; then
		echo "warning: $setup specified in /etc/ikiwiki/wikilist does not exist, skipping" >&2
	else
		echo "Rebuilding $setup as user $user ..."
		su "$user" -c "ikiwiki -setup $setup"
	fi
}

if [ -e "$wikilist" ]; then
	grep -v '^#' $wikilist | grep -v '^$' | while read line; do 
		processline $line
	done
fi