summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/Theme/XX_Theme.sh
blob: 81d2a72914b20e37b35f4ce0fd66d522335e5daa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh
#
# stage3 part of 'Theme' plugin - the runlevel script
#
if ! [ -e /initramfs/plugin-conf/Theme.conf ]; then
	exit 1
fi
. /initramfs/plugin-conf/Theme.conf

if ! [ -n $active ]; then
	exit 0
fi

echo "executing the 'Theme' os-plugin ...";

# nothing to do here, really

echo "done with 'Theme' os-plugin ...";