|
@@ -221,10 +221,22 @@ timedatectl set-timezone Europe/Berlin
|
|
|
|
|
|
# Switch to functions...
|
|
|
case $1 in
|
|
|
- grmlnetwork) grmlnetwork() ;;
|
|
|
- install) install() ;;
|
|
|
- install2) install2() ;;
|
|
|
- bootloader) bootloader() ;;
|
|
|
- postinstall) postinstall() ;;
|
|
|
- *) echo "Valid functions are: grmlnetwork, install, postinstall" >&2 ;;
|
|
|
+ grmlnetwork)
|
|
|
+ grmlnetwork
|
|
|
+ ;;
|
|
|
+ install)
|
|
|
+ install
|
|
|
+ ;;
|
|
|
+ install2)
|
|
|
+ install2
|
|
|
+ ;;
|
|
|
+ bootloader)
|
|
|
+ bootloader
|
|
|
+ ;;
|
|
|
+ postinstall)
|
|
|
+ postinstall
|
|
|
+ ;;
|
|
|
+ *)
|
|
|
+ echo "Valid functions are: grmlnetwork, install, postinstall" >&2
|
|
|
+ ;;
|
|
|
esac
|