|
@@ -477,7 +477,8 @@ function show_help {
|
477
|
477
|
echo ''
|
478
|
478
|
echo $' -h --help Show help'
|
479
|
479
|
echo $' menuconfig Easy interactive installation'
|
480
|
|
- echo $' menuconfigfull Full interactive installation'
|
|
480
|
+ echo $' menuconfig-full Full interactive installation'
|
|
481
|
+ echo $' menuconfig-onion Interactive installation for onion-only sites'
|
481
|
482
|
echo $' -c --config Installing from a configuration file'
|
482
|
483
|
echo $' --bbb Installing on Beaglebone Black'
|
483
|
484
|
echo $' -u --user User to install the system as'
|
|
@@ -631,11 +632,17 @@ function interactive_configuration {
|
631
|
632
|
|
632
|
633
|
command_options=$1
|
633
|
634
|
|
634
|
|
-if [[ $command_options == "menuconfigfull" ]]; then
|
|
635
|
+if [[ $command_options == "menuconfig-full" ]]; then
|
635
|
636
|
MINIMAL_INSTALL="no"
|
636
|
637
|
command_options="menuconfig"
|
637
|
638
|
fi
|
638
|
639
|
|
|
640
|
+if [[ $command_options == "menuconfig-onion" ]]; then
|
|
641
|
+ MINIMAL_INSTALL="yes"
|
|
642
|
+ ONION_ONLY="yes"
|
|
643
|
+ command_options="menuconfig"
|
|
644
|
+fi
|
|
645
|
+
|
639
|
646
|
if [[ $command_options == "menuconfig" ]]; then
|
640
|
647
|
interactive_configuration
|
641
|
648
|
else
|