[molecules] add Amazon EC2 ext3-based image generation specs
This commit is contained in:
13
molecules/sabayon-amd64-spinbase-amazon-ami-template.spec
Normal file
13
molecules/sabayon-amd64-spinbase-amazon-ami-template.spec
Normal file
@@ -0,0 +1,13 @@
|
||||
# Use abs path, otherwise daily builds automagic won't work
|
||||
# For further documentation, see the file above:
|
||||
%import /sabayon/molecules/spinbase-amazon-ami-image-template.common
|
||||
|
||||
# pre chroot command, example, for 32bit chroots on 64bit system, you always
|
||||
# have to append "linux32" this is useful for inner_chroot_script
|
||||
# prechroot:
|
||||
|
||||
# Path to source ISO file (MANDATORY)
|
||||
source_iso: /sabayon/iso/Sabayon_Linux_SpinBase_DAILY_amd64.iso
|
||||
|
||||
release_version: 6
|
||||
image_name: Sabayon_Linux_SpinBase_6_amd64_ami.img
|
||||
13
molecules/sabayon-x86-spinbase-amazon-ami-template.spec
Normal file
13
molecules/sabayon-x86-spinbase-amazon-ami-template.spec
Normal file
@@ -0,0 +1,13 @@
|
||||
# Use abs path, otherwise daily builds automagic won't work
|
||||
# For further documentation, see the file above:
|
||||
%import /sabayon/molecules/spinbase-amazon-ami-image-template.common
|
||||
|
||||
# pre chroot command, example, for 32bit chroots on 64bit system, you always
|
||||
# have to append "linux32" this is useful for inner_chroot_script
|
||||
prechroot: linux32
|
||||
|
||||
# Path to source ISO file (MANDATORY)
|
||||
source_iso: /sabayon/iso/Sabayon_Linux_SpinBase_DAILY_x86.iso
|
||||
|
||||
release_version: 6
|
||||
image_name: Sabayon_Linux_SpinBase_6_x86_ami.img
|
||||
126
molecules/spinbase-amazon-ami-image-template.common
Normal file
126
molecules/spinbase-amazon-ami-image-template.common
Normal file
@@ -0,0 +1,126 @@
|
||||
# WARNING:
|
||||
# variables in your .spec files importing this .common header,
|
||||
# DO NOT override the ones set here, but rather their values will
|
||||
# be concatenated.
|
||||
# So, if this files has:
|
||||
# my_variable: hello_world
|
||||
# And you import this (through %import file.common) and set
|
||||
# my_variable: go_to_hell
|
||||
# You will get my_variable containing: "hello_world go_to_hell"
|
||||
# It doesn't work like in programming languages!
|
||||
|
||||
# Define an alternative execution strategy, in this case, the value must be
|
||||
execution_strategy: iso_to_image
|
||||
|
||||
# Error script command, executed when something went wrong and molecule has
|
||||
# to terminate the execution
|
||||
# Variables exported:
|
||||
# LOOP_DEVICE = loop device (/dev/loopN) currently in use
|
||||
error_script: /sabayon/scripts/image_error_script.sh
|
||||
|
||||
# Outer chroot script command, to be executed outside destination chroot before
|
||||
# before entering it (and before inner_chroot_script)
|
||||
outer_chroot_script: /sabayon/scripts/remaster_pre.sh
|
||||
|
||||
# Inner chroot script command, to be executed inside destination chroot before
|
||||
# packing it
|
||||
inner_chroot_script: /sabayon/scripts/remaster_generic_inner_chroot_script.sh
|
||||
|
||||
# Inner chroot script command, to be executed inside destination chroot after
|
||||
# packages installation and removal
|
||||
inner_chroot_script_after: /sabayon/scripts/image_generic_inner_chroot_script_after.sh
|
||||
|
||||
# Outer chroot script command, to be executed outside destination chroot before
|
||||
# before entering it (and AFTER inner_chroot_script)
|
||||
outer_chroot_script_after: /sabayon/scripts/remaster_post.sh
|
||||
|
||||
# Pre-image building script. Hook called before image file creation
|
||||
# Variables exported:
|
||||
# TMP_IMAGE_PATH = path pointing to the temporary destination image file
|
||||
# LOOP_DEVICE = loop device (/dev/loopN) currently in use
|
||||
# pre_image_script: /sabayon/scripts/pre_image_script.sh
|
||||
|
||||
# Post-image building script. Hook called after image file creation and move
|
||||
# into destination directory.
|
||||
# Variables exported:
|
||||
# IMAGE_PATH = path pointing to the destination image file
|
||||
# IMAGE_CHECKSUM_PATH = path pointing to the destination image file checksum (md5)
|
||||
# post_image_script: /sabayon/scripts/post_image_script.sh
|
||||
|
||||
# Destination directory for the image path (MANDATORY)
|
||||
destination_image_directory: /sabayon/images
|
||||
|
||||
# Specify an alternative image file name (image file name will be automatically
|
||||
# produced otherwise)
|
||||
# image_name:
|
||||
|
||||
# Specify the image file size in Megabytes. This is mandatory.
|
||||
# To avoid runtime failure, make sure the image is large enough to fit your
|
||||
# chroot data.
|
||||
# Example: 5000 (means: ~5GB)
|
||||
# Example: 15000 (means: ~15GB)
|
||||
image_mb: 5000
|
||||
|
||||
# Either set this to "yes" or "no" if you want your image to be filled with
|
||||
# random data instead of zeroes. urandom is used, fallback is: random.
|
||||
# Default is: no
|
||||
# image_randomize:
|
||||
|
||||
# Specify an image filesystem formatter that takes a single argument , which is
|
||||
# the image device (by design, a loop device is passed to this executable).
|
||||
# Default is: mkfs.ext3
|
||||
# image_formatter:
|
||||
|
||||
# Specify an image file mount command. Two arguments are passed: (1) a loop
|
||||
# device (/dev/loopN), (2) a temporary destination directory.
|
||||
# Default is: mount -o loop,rw
|
||||
# image_mounter:
|
||||
|
||||
# Specify am image file unmount command. One arguments is passed: mount point.
|
||||
# Default is: umount
|
||||
# image_umounter:
|
||||
|
||||
# Alternative ISO file mount command (default is: mount -o loop -t iso9660)
|
||||
# iso_mounter:
|
||||
|
||||
# Alternative ISO umounter command (default is: umount)
|
||||
# iso_umounter:
|
||||
|
||||
# Alternative squashfs file mount command (default is: mount -o loop -t squashfs)
|
||||
# squash_mounter:
|
||||
|
||||
# Alternative ISO squashfs umount command (default is: umount)
|
||||
# squash_umounter:
|
||||
|
||||
# List of packages that would be removed from chrooted system (comma separated)
|
||||
packages_to_remove:
|
||||
app-admin/anaconda,
|
||||
net-misc/networkmanager,
|
||||
net-firewall/ufw,
|
||||
sys-kernel/linux-sabayon
|
||||
|
||||
# Custom shell call to packages removal (default is: equo remove)
|
||||
# custom_packages_remove_cmd:
|
||||
|
||||
# List of packages that would be added from chrooted system (comma separated)
|
||||
packages_to_add:
|
||||
app-admin/ec2-ami-tools,
|
||||
net-misc/dhcpcd,
|
||||
sys-kernel/linux-xen-domU,
|
||||
sys-process/atop
|
||||
|
||||
# Custom shell call to packages add (default is: equo install)
|
||||
# custom_packages_add_cmd:
|
||||
|
||||
# Custom command for updating repositories (default is: equo update)
|
||||
# repositories_update_cmd:
|
||||
|
||||
# Determine whether repositories update should be run (if packages_to_add is set)
|
||||
# (default is: no), values are: yes, no.
|
||||
# execute_repositories_update: no
|
||||
|
||||
# Directories to remove completely (comma separated)
|
||||
# paths_to_remove:
|
||||
|
||||
# Directories to empty (comma separated)
|
||||
# paths_to_empty:
|
||||
Reference in New Issue
Block a user