diff options
Diffstat (limited to 'stages/second_stage.sh')
-rw-r--r-- | stages/second_stage.sh | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/stages/second_stage.sh b/stages/second_stage.sh index bd6ddf9..2d19b9a 100644 --- a/stages/second_stage.sh +++ b/stages/second_stage.sh @@ -16,59 +16,3 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. - - -##################### -# second_stage.sh # -##################### - - -# Argument Processing - -hostname=$1 -boot_partition_path=$2 -REPOSITORY_PATH=$3 -CONFIG_FILE_PATH=$4 -desktop=$5 - - -# Localization - -bash $REPOSITORY_PATH/bin/localization.sh - - -# Network Configuration - -bash $REPOSITORY_PATH/bin/network_configuration.sh $hostname - - -# Initramfs - -# implement if needed ... - - -# Set default Password - -echo "root:root" | chpasswd -echo "Default password for user root set - OK" -echo "" -sleep 1 - - -# Bootloader Installation - -bash $REPOSITORY_PATH/bin/install_bootloader.sh $boot_partition_path - - -# Desktop Installation - -if [ "$desktop" = "yes" ]; then - bash $REPOSITORY_PATH/bin/configure_desktop.sh -fi - - -# Good bye chroot - -echo "Leaving chroot environment - OK" -echo "" -sleep 1 |