summaryrefslogtreecommitdiff
path: root/functions/templates.sh
blob: 846034b1b92bdfd32c8f9d5a8a2e841c272ad74e (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
33
#!/bin/sh

# templates.sh - handle templates files
# Copyright (C) 2006-2009 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.

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

	# Check user defined templates directory
	if [ ! -e "${LH_TEMPLATES}" ]
	then
		if [ -d config/templates ]
		then
			LH_TEMPLATES=config/templates
		else
			Echo_error "templates not accessible in %s nor config/templates" "${LH_TEMPLATES}"
			exit 1
		fi
	fi

	if [ -d "${LH_TEMPLATES}/${PACKAGE}" ]
	then
		TEMPLATES="${LH_TEMPLATES}/${PACKAGE}"
	else
		Echo_error "%s templates not accessible in %s" "${PACKAGE}" "${LH_TEMPLATES}"
		exit 1
	fi
}