Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
system.linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Simple Deploy- and Management
system.linux
Commits
8a30f893
Verified
Commit
8a30f893
authored
5 years ago
by
Christoph Johannes Kleine
Browse files
Options
Downloads
Patches
Plain Diff
bootlocal.sh und installer.sh lauffähig
parent
a7e4f7e3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
files/bootlocal.sh
+12
-7
12 additions, 7 deletions
files/bootlocal.sh
files/installer.sh
+20
-3
20 additions, 3 deletions
files/installer.sh
with
32 additions
and
10 deletions
files/bootlocal.sh
+
12
−
7
View file @
8a30f893
...
@@ -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"
This diff is collapsed.
Click to expand it.
files/installer.sh
+
20
−
3
View file @
8a30f893
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment