2007-09-23 08:04:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# common.sh - common things for all live-helpers
|
2009-01-26 15:39:27 -01:00
|
|
|
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
|
2007-09-23 08:04:49 +00: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.
|
|
|
|
|
2007-09-24 06:47:42 +00:00
|
|
|
PROGRAM="$(basename ${0})"
|
2008-11-02 15:20:24 -01:00
|
|
|
PACKAGE="live-helper"
|
2009-09-04 11:34:54 +00:00
|
|
|
VERSION="1.0.5-2"
|
2009-09-11 09:50:08 +00:00
|
|
|
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
2008-09-17 09:07:44 +00:00
|
|
|
|
|
|
|
PATH="${PWD}/scripts:${PATH}"
|