2009-11-22 12:36:42 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# common.sh - common things for all live-helpers
|
2010-03-04 11:43:04 -01:00
|
|
|
# Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
|
2009-11-22 12:36:42 -01:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
PROGRAM="$(basename ${0})"
|
|
|
|
PACKAGE="live-helper"
|
2010-04-30 15:10:54 +00:00
|
|
|
VERSION="2.0~a11-1"
|
2009-11-22 12:36:42 -01:00
|
|
|
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
|
|
|
|
2010-01-11 21:58:54 -01:00
|
|
|
PATH="${PWD}/auto/helpers:${PATH}"
|