Fix sed usage for fall back to old behaviour in MBR handling
[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 _opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \
16     mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,keep_src_list,hostname:,password:,bootappend:,grub:,arch:,insecure,verbose,help,version \
17   -- "$@"`
18 if [ $? != 0 ]; then
19   eerror "Try 'grml-debootstrap --help' for more information."; eend 1; exit 1
20 fi
21 eval set -- "$_opt_temp"
22
23 while :; do
24   case "$1" in
25
26   # == Bootstrap options
27   --mirror|-m)         # Mirror which should be used for apt-get/aptitude
28     shift; _opt_mirror="$1"
29     ;;
30   --iso|-i)            # Mountpoint where a Debian ISO is mounted to
31     shift; _opt_iso="$1"
32     ;;
33   --release|-r)        # Release of new Debian system
34     shift; _opt_release="$1"
35     ;;
36   --target|-t)         # Target partition (/dev/...) or directory
37     shift; _opt_target="$1"
38     ;;
39   --mntpoint|-p)       # Mountpoint used for mounting the target system
40     shift; _opt_mntpoint="$1"
41     ;;
42   --debopt)            # Extra parameters passed to the debootstrap command
43     shift; _opt_debopt="$1"
44     ;;
45   --interactive)       # Use interactive mode (frontend)
46     _opt_interactive=T
47     ;;
48   --nodebootstrap)     # Skip debootstrap, only do configuration to the target
49     _opt_nodebootstrap=T
50     ;;
51   --arch)              # Target architecutre
52     shift; _opt_arch="$1"
53     ;;
54   --insecure)
55     _opt_insecure=T
56     ;;
57   #
58
59   # == Configuration options
60   --config|-c)         # Use specified configuration file, defaults to /etc/debootstrap
61     shift; _opt_config="$1"
62     ;;
63   --confdir|-d)        # Place of config files for debootstrap, defaults to /etc/debootstrap
64     shift; _opt_confdir="$1"
65     ;;
66   --packages)          # Install packages defined in specified file
67     shift; _opt_packages="$1"
68     _opt_packages_set=T
69     ;;
70   --debconf)           # Pre-seed packages using specified file
71     shift; _opt_debconf="$1"
72     _opt_debconf_set=T
73     ;;
74   --pre-scripts)       # Execute scripts from specified directory (before chroot-scripts).
75     shift; _opt_pre_scripts="$1"
76     _opt_pre_scripts_set=T
77     ;;
78   --scripts)           # Execute scripts from specified directory
79     shift; _opt_scripts="$1"
80     _opt_scripts_set=T
81     ;;
82   --chroot-scripts)   # Execute chroot scripts from specified directory
83     shift; _opt_chroot_scripts="$1"
84     _opt_chroot_scripts_set=T
85     ;;
86   --keep_src_list)     # Do not overwrite user provided apt sources.list
87     _opt_keep_src_list=T
88     ;;
89   --hostname)          # Hostname of Debian system
90     shift; _opt_hostname="$1"
91     ;;
92   --password)          # Use specified password as password for user root
93     shift; _opt_password="$1"
94     ;;
95   --bootappend)        # Add specified appendline to kernel whilst booting
96     shift; _opt_bootappend="$1"
97     ;;
98   --grub)              # Target for grub installation. Use grub syntax for specifying
99     shift; _opt_grub="$1"
100     ;;
101
102   # == Other options
103   --verbose|-v)        # Increase verbosity
104     if [ "$_opt_verbose" ]; then _opt_verbose=`expr $_opt_verbose + 1`
105     else _opt_verbose=1; fi
106     ;;
107   --help|-h)           # Print usage information and exit
108     _opt_help=T
109     ;;
110   --version|-V)        # Show version information and exit
111     _opt_version=T
112     ;;
113   --)
114     shift; break
115     ;;
116   *)
117     eerror "Internal getopt error!"; eend 1 ; exit 1
118     ;;
119   esac
120   shift
121 done
122
123 ## END OF FILE #################################################################