renamed pacstrap to bootstrap
This commit is contained in:
parent
ca39d77abf
commit
3461873e29
1 changed files with 3 additions and 3 deletions
|
@ -73,7 +73,7 @@ are given, $(basename "$0") defaults to the "base" group.
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
pacstrap() {
|
bootstrap() {
|
||||||
(( EUID == 0 )) || die 'This script must be run with root privileges'
|
(( EUID == 0 )) || die 'This script must be run with root privileges'
|
||||||
|
|
||||||
# create obligatory directories
|
# create obligatory directories
|
||||||
|
@ -123,7 +123,7 @@ while getopts ':C:cDGiKMNPU' flag; do
|
||||||
case $flag in
|
case $flag in
|
||||||
C)
|
C)
|
||||||
pacman_config=$OPTARG
|
pacman_config=$OPTARG
|
||||||
;;
|
;;bootstrap
|
||||||
D)
|
D)
|
||||||
pacman_args+=(-dd)
|
pacman_args+=(-dd)
|
||||||
;;
|
;;
|
||||||
|
@ -175,4 +175,4 @@ if (( ! interactive )); then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
setup=chroot_setup
|
setup=chroot_setup
|
||||||
pacstrap
|
bootstrap
|
Loading…
Reference in a new issue