summaryrefslogtreecommitdiff
path: root/functions/templates.sh
blob: 9fbc365493f6b55b9777cf8cf50e9022e1124fe1 (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
28
29
30
31
32
#!/bin/sh

# templates.sh - handle templates files
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
# This is free software, and you are welcome to redistribute it
# under certain conditions; see COPYING for details.

set -e

Check_templates ()
{
	PROGRAM="${1}"

	# Check local templates
	if [ -d config/templates/"${PROGRAM}" ]
	then
		LIVE_TEMPLATES="config/templates"
	fi

	# Checking user templates
	if [ ! -d "${LIVE_TEMPLATES}" ]
	then
		Echo_error "user specified templates not accessible in ${LIVE_TEMPLATES}"
		exit 1
	elif [ ! -d "${LIVE_TEMPLATES}/${PROGRAM}" ]
	then
		Echo_error "${PROGRAM} templates not accessible in ${LIVE_TEMPLATES}"
		exit 1
	fi
}