Displaying 2 results from an estimated 2 matches for "new_depth".
Did you mean:
new_de_bh
2012 Mar 25
2
build postfix rpm with mysql
.../aliases.5%{mps} mta-aliasesman
%{_mandir}/man5/aliases.postfix.5%{mps} \
--initscript postfix
exit 0 # ensure the trigger exit status is 0
%preun
umask 022
# remove the directory and depth levels of subdirectories
queue_hash_depth_remove () {
local dir=$1
local depth=$2
local new_depth
local a
[ -d "$dir" ] && {
if [ "$depth" -gt 0 ]; then
new_depth=$(($depth - 1))
for a in 0 1 2 3 4 5 6 7 8 9 A B C D E F; do
test -d $dir/$a && queue_hash_depth_remove $dir/$a $new_depth
done...
2011 Nov 19
4
build postfix spec w/ mysql
...iases.5%{mps} mta-aliasesman %{_mandir}/man5/aliases.postfix.5%{mps} \
--initscript postfix
exit 0 # ensure the trigger exit status is 0
%preun
umask 022
# remove the directory and depth levels of subdirectories
queue_hash_depth_remove () {
local dir=$1
local depth=$2
local new_depth
local a
[ -d "$dir" ] && {
if [ "$depth" -gt 0 ]; then
new_depth=$(($depth - 1))
for a in 0 1 2 3 4 5 6 7 8 9 A B C D E F; do
test -d $dir/$a && queue_hash_depth_remove $dir/$a $new_depth
done...