diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-09-17 13:23:21 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-09-17 13:23:21 +0200 |
commit | 45eebb079a09e7eec027009bcdc3e6d6783acd4b (patch) | |
tree | bda88484606069189bd07b8f3d663748710cb3e5 /bin | |
parent | 0375e041c36556d30b7b5a3e270269a48daf0882 (diff) | |
parent | 8fbfa6e8116b46ce754f3c3fc455eccc72a976e9 (diff) | |
download | archinstall-45eebb079a09e7eec027009bcdc3e6d6783acd4b.tar archinstall-45eebb079a09e7eec027009bcdc3e6d6783acd4b.tar.zst archinstall-45eebb079a09e7eec027009bcdc3e6d6783acd4b.zip |
Merge branch 'feature_01' into devel.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/install_bootloader.sh | 19 | ||||
-rw-r--r-- | bin/localization.sh | 19 | ||||
-rw-r--r-- | bin/network_configuration.sh | 19 | ||||
-rw-r--r-- | bin/second_stage.sh | 20 |
4 files changed, 77 insertions, 0 deletions
diff --git a/bin/install_bootloader.sh b/bin/install_bootloader.sh index 8c035ee..ccb2173 100644 --- a/bin/install_bootloader.sh +++ b/bin/install_bootloader.sh @@ -1,3 +1,21 @@ +#!/bin/bash + + +# archinstall - A minimal Installation Script for Arch Linux +# Copyright (C) 2019 xengineering + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. # Install Grub @@ -14,3 +32,4 @@ sleep 1 echo "Leaving chroot environment - OK" echo "" sleep 1 + diff --git a/bin/localization.sh b/bin/localization.sh index cb34c31..52ab0d0 100644 --- a/bin/localization.sh +++ b/bin/localization.sh @@ -1,3 +1,21 @@ +#!/bin/bash + + +# archinstall - A minimal Installation Script for Arch Linux +# Copyright (C) 2019 xengineering + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. # Set timezone @@ -29,3 +47,4 @@ echo "KEYMAP=de-latin1" > /etc/vconsole.conf echo "German localization done - OK" echo "" sleep 1 + diff --git a/bin/network_configuration.sh b/bin/network_configuration.sh index 251f9a0..23368b2 100644 --- a/bin/network_configuration.sh +++ b/bin/network_configuration.sh @@ -1,3 +1,21 @@ +#!/bin/bash + + +# archinstall - A minimal Installation Script for Arch Linux +# Copyright (C) 2019 xengineering + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. # Network Configuration @@ -13,3 +31,4 @@ echo "::1 localhost" >> /etc/hosts echo "Network configuration done - OK" echo "" sleep 1 + diff --git a/bin/second_stage.sh b/bin/second_stage.sh index 59203cd..5099e20 100644 --- a/bin/second_stage.sh +++ b/bin/second_stage.sh @@ -1,3 +1,21 @@ +#!/bin/bash + + +# archinstall - A minimal Installation Script for Arch Linux +# Copyright (C) 2019 xengineering + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# 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 of archinstall @@ -5,6 +23,8 @@ hostname=$1 boot_partition_path=$2 +echo "hostname: $hostname" +echo "boot_partition_path: $boot_partition_path" # Localization |