summaryrefslogtreecommitdiff
path: root/stages/second_stage.sh
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2019-12-15 11:05:58 +0100
committerxengineering <mail2xengineering@protonmail.com>2019-12-15 11:05:58 +0100
commit5dd3ee9231199e45f69db62f2a0f46cb7c53694d (patch)
tree868a6905ed790e457746208e0e0933b44ac90431 /stages/second_stage.sh
parenta9d270eddc062c336c40e1ef8e2c732986222673 (diff)
downloadarchinstall-5dd3ee9231199e45f69db62f2a0f46cb7c53694d.tar
archinstall-5dd3ee9231199e45f69db62f2a0f46cb7c53694d.tar.zst
archinstall-5dd3ee9231199e45f69db62f2a0f46cb7c53694d.zip
Splitted new stage/util files from old bin files.
Diffstat (limited to 'stages/second_stage.sh')
-rw-r--r--stages/second_stage.sh56
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