Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / admin / IntegTools / post_install / option.func
1 HandleOption()
2 {
3   while [ $# -ne 0 ]; do
4     case $1 in
5         -e) OPERATION="configure"
6             shift;
7             ;;
8         -d) OPERATION="deconfigure"
9             shift;
10             ;;
11         -v) OPERATION="verify"
12             shift;
13             ;;
14         -s) OPERATION="size"
15             shift;
16             ;;
17     esac
18   done
19 }
20