Sophie

Sophie

distrib > Mandriva > 2009.0 > x86_64 > by-pkgid > 50dfdb1b1881d3b98176e574091bcaef > files > 18

postfix-2.5.5-2mdv2009.0.src.rpm

# From: Carsten Hoeger (choeger@suse.de)
# Date: Thu May 02 2002 - 14:38:06 CDT 

function _postconf_ () 
{ 
	local cmd=${COMP_WORDS[COMP_CWORD]} 
	local idx=0 
	local clen=${#cmd} 
	for pval in $(/usr/sbin/postconf | cut -d" " -f1); do 
		if [ "$cmd" == "${pval:0:$clen}" ]; then 
			COMPREPLY[$idx]=$pval 
			idx=$[$idx+1] 
		fi 
	done 
} 

complete -F _postconf_ postconf