summaryrefslogtreecommitdiffstats
path: root/tools/templates/core_pkg/default-config-serial/metadir/+INSTALL
blob: ce7b8531db41956f889df0bc7878a22517d7d16d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

if [ "${2}" != "POST-INSTALL" ]; then
	exit 0
fi

if [ ! -f /cf/conf/config.xml ]; then
	cp /conf.default/config.xml /cf/conf/config.xml
fi

if [ ! -L /conf ]; then
	ln -sf /cf/conf /conf
fi

if [ ! -d /cf/conf/backup ]; then
	mkdir /cf/conf/backup
fi

FLAVOR="%%FLAVOR%%"
echo ${FLAVOR##-} > /etc/default-config-flavor

exit 0
OpenPOWER on IntegriCloud