[molecules/amd64+x86] add inner_chroot_script_after setup script

This commit is contained in:
Fabio Erculiani 2012-02-02 12:30:25 +01:00
parent da63ecc07e
commit d05c8eaeba
3 changed files with 17 additions and 2 deletions

View File

@ -20,7 +20,7 @@ iso_title: Sabayon GNOME
# Inner chroot script command, to be executed inside destination chroot after # Inner chroot script command, to be executed inside destination chroot after
# packages installation and removal # packages installation and removal
# inner_chroot_script_after: inner_chroot_script_after: /sabayon/scripts/amd64_x86_inner_chroot_script_after.sh
# Outer chroot script command, to be executed outside destination chroot before # Outer chroot script command, to be executed outside destination chroot before
# before entering it (and AFTER inner_chroot_script) # before entering it (and AFTER inner_chroot_script)

View File

@ -20,7 +20,7 @@ iso_title: Sabayon KDE
# Inner chroot script command, to be executed inside destination chroot after # Inner chroot script command, to be executed inside destination chroot after
# packages installation and removal # packages installation and removal
# inner_chroot_script_after: inner_chroot_script_after: /sabayon/scripts/amd64_x86_inner_chroot_script_after.sh
# Outer chroot script command, to be executed outside destination chroot before # Outer chroot script command, to be executed outside destination chroot before
# before entering it (and AFTER inner_chroot_script) # before entering it (and AFTER inner_chroot_script)

View File

@ -0,0 +1,15 @@
#!/bin/sh
# Setup Desktop links
# ARM Images links
ln -s "/mnt/cdrom/ARM" "/etc/skel/Desktop/ARM_Images"
# Tigal Desktop link
echo "[Desktop Entry]
Encoding=UTF-8
Icon=/usr/share/pixmaps/sabayon-weblink.png
Type=Link
URL=http://www.tigal.com
Name=Sponsored by Tigal" > /etc/skel/Desktop/tigal.desktop
exit 0