qubes_image: split into *_appvm and *_netvm
This commit is contained in:
parent
de70f3a4fd
commit
bfb3acc6d4
59
qubeize_image_appvm
Executable file
59
qubeize_image_appvm
Executable file
@ -0,0 +1,59 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
CLEANIMG=$1
|
||||||
|
NAME=$2
|
||||||
|
|
||||||
|
if [ $# -eq 0 ]; then
|
||||||
|
echo "usage $0 <clean_image_file> <template_name>"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x$CLEANIMG = x ]; then
|
||||||
|
echo "Image file not specified!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x$NAME = x ]; then
|
||||||
|
echo "Name not given!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
ID=$(id -ur)
|
||||||
|
|
||||||
|
if [ $ID != 0 ] ; then
|
||||||
|
echo "This script should be run as root user."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
IMG=qubeized_images/$NAME-root.img
|
||||||
|
echo "--> Copying $CLEANIMG to $IMG..."
|
||||||
|
cp $CLEANIMG $IMG || exit 1
|
||||||
|
|
||||||
|
echo "--> Mouting $IMG"
|
||||||
|
|
||||||
|
mkdir -p mnt
|
||||||
|
mount -o loop,offset=$((63*512)) qubeized_images/$NAME-root.img mnt || exit 1
|
||||||
|
|
||||||
|
echo "--> Installing RPMs..."
|
||||||
|
rpm --force --root=$(pwd)/mnt -ihv rpms_to_install_appvm/*
|
||||||
|
|
||||||
|
|
||||||
|
echo "--> Copying the Apps Menu shortcuts..."
|
||||||
|
APPSORIG=qubeized_images/$NAME-apps.orig
|
||||||
|
APPSTEMPL=qubeized_images/$NAME-apps.templates
|
||||||
|
mkdir -p $APPSORIG
|
||||||
|
cp -r $(pwd)/mnt/usr/share/applications/* $APPSORIG
|
||||||
|
|
||||||
|
echo "--> Createing the Apps Menu templates..."
|
||||||
|
./create_apps_templates.sh $APPSORIG $APPSTEMPL
|
||||||
|
|
||||||
|
echo "--> Installing 3rd party apps"
|
||||||
|
./add_3rd_party_software.sh
|
||||||
|
|
||||||
|
|
||||||
|
echo "--> Unmounting $IMG"
|
||||||
|
umount mnt
|
||||||
|
|
||||||
|
echo "Qubeized image stored at: $IMG"
|
||||||
|
|
@ -2,20 +2,20 @@
|
|||||||
|
|
||||||
CLEANIMG=$1
|
CLEANIMG=$1
|
||||||
NAME=$2
|
NAME=$2
|
||||||
IS_NETVM=$3
|
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
echo "usage $0 <clean_image_file> <template_name>"
|
echo "usage $0 <clean_image_file> <template_name>"
|
||||||
echo "usage $0 <clean_image_file> <template_name> netvm"
|
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ x$CLEANIMG = x ]; then
|
if [ x$CLEANIMG = x ]; then
|
||||||
echo "Image file not specified!"
|
echo "Image file not specified!"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ x$NAME = x ]; then
|
if [ x$NAME = x ]; then
|
||||||
echo "Name not given!"
|
echo "Name not given!"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ID=$(id -ur)
|
ID=$(id -ur)
|
||||||
@ -36,7 +36,7 @@ mkdir -p mnt
|
|||||||
mount -o loop,offset=$((63*512)) qubeized_images/$NAME-root.img mnt || exit 1
|
mount -o loop,offset=$((63*512)) qubeized_images/$NAME-root.img mnt || exit 1
|
||||||
|
|
||||||
echo "--> Installing RPMs..."
|
echo "--> Installing RPMs..."
|
||||||
rpm --force --root=$(pwd)/mnt -ihv rpms_to_install/*
|
rpm --force --nodeps --root=$(pwd)/mnt -ihv rpms_to_install_netvm/*
|
||||||
|
|
||||||
|
|
||||||
echo "--> Copying the Apps Menu shortcuts..."
|
echo "--> Copying the Apps Menu shortcuts..."
|
||||||
@ -45,22 +45,11 @@ APPSTEMPL=qubeized_images/$NAME-apps.templates
|
|||||||
mkdir -p $APPSORIG
|
mkdir -p $APPSORIG
|
||||||
cp -r $(pwd)/mnt/usr/share/applications/* $APPSORIG
|
cp -r $(pwd)/mnt/usr/share/applications/* $APPSORIG
|
||||||
|
|
||||||
if [ x$IS_NETVM != x ]; then
|
if ! [ -d netvm/apps.templates ] ; then
|
||||||
if ! [ -d netvm/apps.templates ] ; then
|
echo "--> ERROR: Missing netvm/apps.templates directory."
|
||||||
echo "--> ERROR: Missing netvm/apps.templates directory."
|
exit 1
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "--> Createing the Apps Menu templates..."
|
|
||||||
./create_apps_templates.sh $APPSORIG $APPSTEMPL
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ x$IS_NETVM == x ]; then
|
|
||||||
echo "--> Installing 3rd party apps"
|
|
||||||
./add_3rd_party_software.sh
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
echo "--> Unmounting $IMG"
|
echo "--> Unmounting $IMG"
|
||||||
umount mnt
|
umount mnt
|
||||||
|
|
1
rpms_to_install_appvm
Symbolic link
1
rpms_to_install_appvm
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
rpms_to_install_appvm_x64/
|
1
rpms_to_install_netvm
Symbolic link
1
rpms_to_install_netvm
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
rpms_to_install_netvm_x64/
|
Loading…
Reference in New Issue
Block a user