mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-26 17:57:01 +00:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
######################################################################
|
|
#
|
|
# sample-postinstall.sh
|
|
#
|
|
# Example script for post-install hooks.
|
|
#
|
|
# Add this as a postinstall hook to your installer via
|
|
# the 'mkinstaller.py' command line:
|
|
#
|
|
# $ mkinstaller.py ... --postinstall-script sample-postinstall.sh ...
|
|
#
|
|
# At install time, this script will
|
|
#
|
|
# 1. be extracted into the working directory with the other installer
|
|
# collateral
|
|
# 2. have the execute bit set
|
|
# 3. run in-place with the installer chroot directory passed
|
|
# as the first command line parameter
|
|
#
|
|
# If the script fails (returns a non-zero exit code) then
|
|
# the install is aborted.
|
|
#
|
|
# This script is executed using the ONIE runtime (outside the chroot),
|
|
# after the actual installer (chrooted Python script) has finished.
|
|
#
|
|
# This script is run after the postinstall actions (e.g. proxy GRUB
|
|
# commands)
|
|
#
|
|
# At the time the script is run, the installer environment (chroot)
|
|
# is fully prepared, including filesystem mount-points.
|
|
# That is, the chroot mount points have not been unmounted yet.
|
|
#
|
|
######################################################################
|
|
|
|
rootdir=$1; shift
|
|
|
|
echo "Hello from postinstall"
|
|
echo "Chroot is $rootdir"
|
|
|
|
exit 0
|