From 041f05422528bad639db5c2668bf3313643be244 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Mon, 2 Jul 2007 23:48:23 +0000 Subject: * added the 'os-plugins'-folder I missed with last commit git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1221 95ad53e4-c205-0410-b2fa-d234c58c8868 --- os-plugins/plugins/Example/XX_Example.sh | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 os-plugins/plugins/Example/XX_Example.sh (limited to 'os-plugins/plugins/Example/XX_Example.sh') diff --git a/os-plugins/plugins/Example/XX_Example.sh b/os-plugins/plugins/Example/XX_Example.sh new file mode 100644 index 00000000..88c991e8 --- /dev/null +++ b/os-plugins/plugins/Example/XX_Example.sh @@ -0,0 +1,38 @@ +#! /bin/sh +# +# stage3 part of 'Example' plugin - the runlevel script +# +# This basically is a runlevel script (just like you know them from 'init'), +# whose purpose is to activate the plugin in stage3. The 'XX' at the beginning +# of the filename will be replaced with a runlevel precedence number taken +# from the configuration of the respective plugin. All plugin runlevel scripts +# will be executed in the order of those precedence numbers. +# +# In order to activate the corresponding plugin, each runlevel script should: +# +# a) read the corresponding configuration file (in this case: +# /initramfs/plugin-conf/Example.conf) +# +# b) analyse the client (look at the available hardware) and decide what +# needs to be done, taking into account the settings given in the config +# file +# +# c) activate the plugin by copying/linking appropriate plugin-specific files +# (in this case: from /mnt/opt/openslx/plugins/Example/), load required kernel +# modules and whatever else might be necessary. +# +# if you have any questions regarding the use of this file, please drop a mail +# to: ot@openslx.com, or join the IRC-channel '#openslx' (on freenode). + +if ! [ -e /initramfs/plugin-conf/Example.conf ]; then + exit 1 +fi + +echo "executing the 'Example' os-plugin ..."; +# for this example plugin, we simply take a filename from the configuration ... +. /initramfs/plugin-conf/Example.conf + +# ... and cat that file: +cat /mnt/opt/openslx/plugin-repo/Example/$preferred_side + +echo "done with 'Example' os-plugin ..."; -- cgit v1.2.3-55-g7522