Preparations for scripting and testing

This commit is contained in:
Jonas Tobias Hopusch 2023-01-10 17:48:39 +01:00
parent c35484eba3
commit 8720a2891a
Signed by: jotoho
GPG Key ID: 913BDF1196DCF600
4 changed files with 46 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.iso
*.image

19
cd-mount.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
#=======================================================================
# FILE: cd-mount.sh
# USAGE: cd-mount.sh [<Verzeichnis, welches bearbeitet werden sollte>]
# DESCRIPTION:
# OPTIONS:
# REQUIREMENTS:
# BUGS:
# NOTES:
# AUTHOR: Jonas Tobias Hopusch <hopusch.jonastobias@fh-swf.de>
# COMPANY: Fachhochschule Südwestfalen
# VERSION: 1
# CREATED: 2023-01-08T14:10Z
# REVISION:
#=======================================================================
#-----------------------------------------------------------------------
# COMMENT
#-----------------------------------------------------------------------

19
cd-umount.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
#=======================================================================
# FILE: cd-umount.sh
# USAGE: cd-umount.sh [<Verzeichnis, welches bearbeitet werden sollte>]
# DESCRIPTION:
# OPTIONS:
# REQUIREMENTS:
# BUGS:
# NOTES:
# AUTHOR: Jonas Tobias Hopusch <hopusch.jonastobias@fh-swf.de>
# COMPANY: Fachhochschule Südwestfalen
# VERSION: 1
# CREATED: 2023-01-10T16:32Z
# REVISION:
#=======================================================================
#-----------------------------------------------------------------------
# COMMENT
#-----------------------------------------------------------------------

6
images/download-isos.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -eu
wget 'https://distro.ibiblio.org/tinycorelinux/5.x/x86/release/Core-current.iso'
wget 'https://distro.ibiblio.org/tinycorelinux/5.x/x86/release/TinyCore-current.iso'