mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-18 10:35:27 +00:00
14 lines
251 B
Bash
Executable File
14 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shutdown syshook / plugin scripts
|
|
/usr/local/etc/rc.syshook stop
|
|
|
|
# wait for config lock to release
|
|
php -a >/dev/null << EOF
|
|
\$fp = fopen('/conf/config.xml', "a+");
|
|
if (flock(\$fp, LOCK_EX)) {
|
|
flock(\$fp, LOCK_UN);
|
|
fclose(\$fp);
|
|
}
|
|
EOF
|