Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/modules/custom_scripts/kspost.80.nochroot.custom_scripts.sh
blob: d5559f6cfd16c3624096e3d890be056eb01e22b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Copyright (C) 2010 One Laptop Per Child
# Licensed under the terms of the GNU GPL v2 or later; see COPYING for details.

. $OOB__shlib

find_option_values scripts custom_scripts custom_script
for script in "${scripts[@]}"; do
	echo "echo 'Executing custom script $script'"
	echo "export oob_config_dir=\"$oob_config_dir\""
	echo "[ -x \"$script\" ] && \"$script\" || bash \"$script\""
done