13 lines
224 B
Plaintext
13 lines
224 B
Plaintext
maybe_create_xml_catalog ()
|
|
{
|
|
if [ ! -f "/etc/xml/catalog" ]
|
|
then
|
|
/usr/bin/mkdir -p /etc/xml
|
|
/usr/bin/xmlcatalog --noout --create /etc/xml/catalog
|
|
|
|
MAYBE_FIRST_START=true
|
|
fi
|
|
}
|
|
|
|
maybe_create_xml_catalog
|