Displaying 1 result from an estimated 1 matches for "vendor_script".
2009 Nov 16
3
[PATCH] Add support for vendor hooks during ovirt-early start()
...stages:
+ # vendor_pre_hook()
+ # vendor_post_host()
+ # pre_hook runs after cmdline processing but before the rest of ovirt-early
+ # post_hook runs at the end of ovirt-early start()
+ [ -x "${i}" ] && {
+ vendor_script="$i"
+ log "Found vendor script: ${vendor_script}";
+ bootparams="$bootparams $i"
+ }
esac
done
+ if [ -n "${vendor_script}" ]; then
+ . ${vendor_script}
+ vendor_pre_hook
+ fi
+...