blob: bd7f299115d0bdbc798912c91f70ec260c73bc15 (
plain) (
tree)
|
|
#!/bin/sh
[ "$2" != "POST-INSTALL" ] && exit 0
config_file=$PKG_PREFIX/lib/warsow/basewsw/config.cfg
if ! [ -e $config_file ]; then
touch $config_file
chown root:wheel $config_file 2>/dev/null
chmod 666 $config_file
fi
|