Skip to content
Snippets Groups Projects
Verified Commit 8a30f893 authored by Christoph Johannes Kleine's avatar Christoph Johannes Kleine
Browse files

bootlocal.sh und installer.sh lauffähig

parent a7e4f7e3
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,8 @@ chmod 755 / ...@@ -27,7 +27,8 @@ chmod 755 /
installTcPackages bash parted bc ntfs-3g dosfstools installTcPackages bash parted bc ntfs-3g dosfstools
# workaround for limited availability of btrfs-progs and reiserfsprogs # workaround for limited availability of btrfs-progs and reiserfsprogs
if [ uname -m -eq x86_64 ] architecture=$(uname -m)
if [ "${architecture}" == "x86_64" ]
then installTcPackages btrfs-progs then installTcPackages btrfs-progs
else installTcPackages reiserfsprogs else installTcPackages reiserfsprogs
fi fi
...@@ -36,11 +37,13 @@ fi ...@@ -36,11 +37,13 @@ fi
installTcPackages kmaps util-linux installTcPackages kmaps util-linux
loadkmap </usr/share/kmap/qwertz/de-latin1-nodeadkeys.kmap loadkmap </usr/share/kmap/qwertz/de-latin1-nodeadkeys.kmap
echo "create target directory"
mkdir /target mkdir /target
chmod 0755 /target chmod 0755 /target
# include install.sh # run install.sh
. ./installer.sh | tee >> /tmp/installer.logfile echo "switch to bash and run installer"
bash ./installer.sh | tee >> /tmp/installer.logfile
mkdir -p /target/etc/ssh/ mkdir -p /target/etc/ssh/
chmod 0755 /target/etc/ssh/ chmod 0755 /target/etc/ssh/
...@@ -50,8 +53,10 @@ cp /opt/ansible.pub /target/etc/ssh/authorized_keys ...@@ -50,8 +53,10 @@ cp /opt/ansible.pub /target/etc/ssh/authorized_keys
chmod 0644 /target/etc/ssh/authorized_keys chmod 0644 /target/etc/ssh/authorized_keys
chown 0:0 /target/etc/ssh/authorized_keys chown 0:0 /target/etc/ssh/authorized_keys
cp /tmp/fstab /etc/fstab cp /tmp/fstab.target /target/etc/fstab
chmod 0644 /etc/fstab chmod 0644 /target/etc/fstab
chown 0:0 /etc/fstab chown 0:0 /target/etc/fstab
echo "installer finished" sync
echo "installer finished, logfile: /tmp/installer.logfile"
...@@ -3,13 +3,30 @@ ...@@ -3,13 +3,30 @@
# include functions.sh again, thins it is a new environment # include functions.sh again, thins it is a new environment
. ./functions.sh . ./functions.sh
# include diskpreperation.sh # include diskspreparation.sh
. ./diskpreperation.sh echo "run disks preparation"
. ./diskspreparation.sh
echo "run disks preparation finished"
# append local fstab, possible problems with outomount included in tinycore
cat /tmp/fstab.local >> /etc/fstab
# inform kernel about changes
sync
sleep 2
partprobe
sleep 2
# mount all unmounted file systems
mount -a
echo "mounting file systems"
# include runinstaller.sh if it exists # include runinstaller.sh if it exists
if [ -f runinstaller.sh ] if [ -f runinstaller.sh ]
then
echo "run installer"
. ./runinstaller.sh . ./runinstaller.sh
echo "run installer finished"
else else
echo "file runinstaller.sh not found" echo "file runinstaller.sh not found"
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment