Skip to content
Snippets Groups Projects
Commit a4f221dc authored by Florent Gluck's avatar Florent Gluck
Browse files

Merge branch 'live_exam_os_ubuntu' of...

Merge branch 'live_exam_os_ubuntu' of ssh://ssh.hesge.ch:10572/flg_projects/nexus_vdi/nexus into live_exam_os_ubuntu
parents 9121f78b 6e1ecb82
Branches
No related tags found
No related merge requests found
...@@ -49,7 +49,6 @@ Replace <image_name> with the name of your Docker image and <param> with the des ...@@ -49,7 +49,6 @@ Replace <image_name> with the name of your Docker image and <param> with the des
| --luks-keys | Provide a list of additional keys for LUKS encryption. | | --luks-keys | Provide a list of additional keys for LUKS encryption. |
| --ram | Use the system in RAM. | | --ram | Use the system in RAM. |
| --challenge | Specify the challenge in use by YubiKeys. | | --challenge | Specify the challenge in use by YubiKeys. |
| --arch | Set the architecture of the system (e.g., amd64). |
| --pxe | Set the URL of the PXE and generate an initramfs, kernel, and squashfs for the PXE to use (use the URL of the folder where the squashfs is stored, not the direct link to the squashfs). | | --pxe | Set the URL of the PXE and generate an initramfs, kernel, and squashfs for the PXE to use (use the URL of the folder where the squashfs is stored, not the direct link to the squashfs). |
| --cache | Path to a folder with a clean filesystem already downloaded. | | --cache | Path to a folder with a clean filesystem already downloaded. |
| --version | Version of Ubuntu (e.g., Noble). | | --version | Version of Ubuntu (e.g., Noble). |
......
...@@ -30,7 +30,6 @@ helper() { ...@@ -30,7 +30,6 @@ helper() {
echo " --luks-keys List of additional keys" echo " --luks-keys List of additional keys"
echo " --ram Using the system in RAM" echo " --ram Using the system in RAM"
echo " --challenge List of additional keys" echo " --challenge List of additional keys"
echo " --arch Set the architecture of the system (e.g., amd64)"
echo " --pxe Set the url of the pxe and generate an initramfs, kernel and squashfs for the pxe to use echo " --pxe Set the url of the pxe and generate an initramfs, kernel and squashfs for the pxe to use
(use the url of the folder where the squashfs is stored, not the direct link to the squashfs)" (use the url of the folder where the squashfs is stored, not the direct link to the squashfs)"
echo " --cache Path to a folder with a clean fs already downloaded" echo " --cache Path to a folder with a clean fs already downloaded"
...@@ -133,15 +132,6 @@ while [ "$#" -gt 0 ]; do ...@@ -133,15 +132,6 @@ while [ "$#" -gt 0 ]; do
helper helper
fi fi
;; ;;
--arch)
if [ -n "$2" ]; then
export ARCH="$2"
shift 2
else
echo "Error: --arch requires an argument" >&2
helper
fi
;;
*) *)
echo "Unknown option: $1" >&2 echo "Unknown option: $1" >&2
helper helper
...@@ -271,7 +261,8 @@ fi ...@@ -271,7 +261,8 @@ fi
echo "[Post-install...]" echo "[Post-install...]"
for script in config/03-post_install/*.sh; do for script in config/03-post_install/*.sh; do
./"$script" echo " [Running $script...]"
run_command "$script"
done done
echo "[Moving kernel...]" echo "[Moving kernel...]"
......
...@@ -4,6 +4,7 @@ linux-image-generic ...@@ -4,6 +4,7 @@ linux-image-generic
linux-firmware linux-firmware
cryptsetup-initramfs cryptsetup-initramfs
network-manager network-manager
network-manager-gnome
xserver-xorg xserver-xorg
xserver-xorg-input-libinput xserver-xorg-input-libinput
xinit xinit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment