buried more whitesapce
[torrus-plus.git] / src / setup_tools / mkvardir.sh.in
blob34d61ac12eace50abc8349bb51de0e7c26de1586
1 #!@SHELL@
2 # Copyright (C) 2002 Stanislav Sinyagin
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18 # Stanislav Sinyagin <ssinyagin@yahoo.com>
21 dir=$1
22 user=@var_user@
23 group=@var_group@
24 mode=@var_mode@
25 SHELL=@SHELL@
27 if test ! -d $dir; then
29 @install_sh@ -d $dir || exit 1
31 if test "@enable_varperm@" = "yes"; then
33 if test "x@host_os@" != "xcygwin"; then
34 test -z "$user" && user=@torrus_user@
35 test -z "$group" && group=torrus
36 test -z "$mode" && mode=775
39 test -z "$mode" || chmod $mode $dir || (rmdir $dir; exit 1)
40 test -z "$user" || chown $user $dir || (rmdir $dir; exit 1)
41 test -z "$group" || (chgrp $group $dir && chmod g+s $dir) || \
42 (rmdir $dir; exit 1)
48 exit 0
52 # Local Variables:
53 # mode: shell-script
54 # indent-tabs-mode: nil
55 # perl-indent-level: 4
56 # End: