mdraids for lenny need to use metadata format 0.90
[grml-debootstrap.git] / cmdlineopts.clp
1 # -*- shell-script -*-
2 # Filename:      cmdlineopts.clp
3 # Purpose:       shell script command line parameter-processing for grml-debootstrap
4 # Authors:       grml-team (grml.org), Tong Sun <suntong@cpan.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8 # @WARNING: Do NOT modify this file without prior contacting the author.
9 # This script is use for the command line *logic* processing. It should be
10 # as dumb as possible. I.e., it should NOT be more complicated than
11 # copy-paste-and-rename from existing code. All *business-logic* processing
12 # should be handled in the main script, where it belongs.
13 ################################################################################
14
15 CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,nopackages,filesystem:,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,keep_src_list,hostname:,password:,bootappend:,grub:,arch:,insecure,verbose,help,version
16
17 _opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \
18     $CMDLINE_OPTS -- "$@"`
19
20 if [ $? != 0 ]; then
21   eerror "Try 'grml-debootstrap --help' for more information."; eend 1; exit 1
22 fi
23 eval set -- "$_opt_temp"
24
25 while :; do
26   case "$1" in
27
28   # == Bootstrap options
29   --mirror|-m)         # Mirror which should be used for apt-get/aptitude
30     shift; _opt_mirror="$1"
31     ;;
32   --iso|-i)            # Mountpoint where a Debian ISO is mounted to
33     shift; _opt_iso="$1"
34     ;;
35   --release|-r)        # Release of new Debian system
36     shift; _opt_release="$1"
37     ;;
38   --target|-t)         # Target partition (/dev/...) or directory
39     shift; _opt_target="$1"
40     ;;
41   --mntpoint|-p)       # Mountpoint used for mounting the target system
42     shift; _opt_mntpoint="$1"
43     ;;
44   --debopt)            # Extra parameters passed to the debootstrap command
45     shift; _opt_debopt="$1"
46     ;;
47   --filesystem)        # Filesystem that should be used
48     shift; _opt_filesystem="$1"
49     ;;
50   --interactive)       # Use interactive mode (frontend)
51     _opt_interactive=T
52     ;;
53   --nodebootstrap)     # Skip debootstrap, only do configuration to the target
54     _opt_nodebootstrap=T
55     ;;
56   --nopackages)        # Skip installation of packages defined in /etc/debootstrap/packages
57     _opt_nopackages=T
58     ;;
59   --arch)              # Target architecutre
60     shift; _opt_arch="$1"
61     ;;
62   --insecure)
63     _opt_insecure=T
64     ;;
65   #
66
67   # == Configuration options
68   --config|-c)         # Use specified configuration file, defaults to /etc/debootstrap
69     shift; _opt_config="$1"
70     ;;
71   --confdir|-d)        # Place of config files for debootstrap, defaults to /etc/debootstrap
72     shift; _opt_confdir="$1"
73     ;;
74   --packages)          # Install packages defined in specified file
75     shift; _opt_packages="$1"
76     _opt_packages_set=T
77     ;;
78   --debconf)           # Pre-seed packages using specified file
79     shift; _opt_debconf="$1"
80     _opt_debconf_set=T
81     ;;
82   --pre-scripts)       # Execute scripts from specified directory (before chroot-scripts).
83     shift; _opt_pre_scripts="$1"
84     _opt_pre_scripts_set=T
85     ;;
86   --scripts)           # Execute scripts from specified directory
87     shift; _opt_scripts="$1"
88     _opt_scripts_set=T
89     ;;
90   --chroot-scripts)   # Execute chroot scripts from specified directory
91     shift; _opt_chroot_scripts="$1"
92     _opt_chroot_scripts_set=T
93     ;;
94   --keep_src_list)     # Do not overwrite user provided apt sources.list
95     _opt_keep_src_list=T
96     ;;
97   --hostname)          # Hostname of Debian system
98     shift; _opt_hostname="$1"
99     ;;
100   --password)          # Use specified password as password for user root
101     shift; _opt_password="$1"
102     ;;
103   --bootappend)        # Add specified appendline to kernel whilst booting
104     shift; _opt_bootappend="$1"
105     ;;
106   --grub)              # Target for grub installation. Use grub syntax for specifying
107     shift; _opt_grub="$1"
108     ;;
109
110   # == Other options
111   --verbose|-v)        # Increase verbosity
112     if [ "$_opt_verbose" ]; then _opt_verbose=`expr $_opt_verbose + 1`
113     else _opt_verbose=1; fi
114     ;;
115   --help|-h)           # Print usage information and exit
116     _opt_help=T
117     ;;
118   --version|-V)        # Show version information and exit
119     _opt_version=T
120     ;;
121   --)
122     shift; break
123     ;;
124   *)
125     eerror "Internal getopt error!"; eend 1 ; exit 1
126     ;;
127   esac
128   shift
129 done
130
131 ## END OF FILE #################################################################