From 50570901c1743d507dd4ca347b161786cab608f0 Mon Sep 17 00:00:00 2001 From: rhatto Date: Sun, 11 Feb 2007 22:07:34 +0000 Subject: templatepkg: now -c is different from -u git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@186 04377dda-e619-0410-9926-eae83683ac58 --- trunk/lib/common.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'trunk/lib/common.sh') diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index 5785223..952f25d 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -447,3 +447,36 @@ function set_jail_perms { } +function use_svn { + + # check if svn usage is enabled + + if [ "$TEMPLATES_UNDER_SVN" == "1" ] && \ + [ "$TEMPLATE_STORAGE_STYLE" == "own-folder" ]; then + return 0 + else + return 1 + fi + +} + +function svn_check { + + # check if a file is under svn + # usage: svn_check + + local cwd + + cwd="`pwd`" + cd `dirname $1` + + if [ "`svn status $1 | awk '{ print $1 }'`" == "?" ]; then + return 1 + else + return 0 + fi + + cd $cwd + +} + -- cgit v1.2.3