summaryrefslogtreecommitdiffstats
path: root/slx-tools.template
blob: 35dbb4dcc889575140d8b1d461d931fcaf22cf57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/ash

# Collection of small ash functions utilized in various scripts.
################################################################################

[ -n "$slx_tools_SOURCED" ] && return 0
slx_tools_SOURCED=1

case "$PATH" in
	*opt/openslx*) ;;
	*) export PATH="$PATH:/opt/openslx/bin:/opt/openslx/sbin" ;;
esac

BASE=.

%DEFS%

if [ "${0##*/}" = "slx-tools" ]; then
	if [ $# -ge 1 ]; then
		"$@"
	else
		echo "slx-tools [function] [args...]"
		echo "Available functions:%FUNCTIONS%"
	fi
else
	:
fi