repo.or.cz
/
Samba
/
bb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve the Gemand pam_winbind translation.
[Samba/bb.git]
/
source4
/
script
/
installdirs.sh
blob
9557b86d3bc401fdcf39b7a4112430d210f17568
1
#!/bin/sh
2
3
while
(
test -n
"
$1
"
);
do
4
if
[ !
-d
$1
];
then
5
mkdir
-p
$1
6
fi
7
8
if
[ !
-d
$1
];
then
9
echo
Failed to
make
directory
$1
10
exit
1
11
fi
12
13
shift
;
14
done
15
16
17