mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-29 12:51:49 +08:00
16 lines
322 B
Ucode
16 lines
322 B
Ucode
'use strict';
|
|
|
|
import { glob, unlink } from 'fs';
|
|
|
|
return {
|
|
menu_flush: function() {
|
|
for (let path in glob('/tmp/luci-indexcache', '/tmp/luci-indexcache.*'))
|
|
unlink(path);
|
|
|
|
system('rm -rf /tmp/luci-modulecache 2>/dev/null');
|
|
|
|
http.prepare_content('application/json');
|
|
http.write_json({ flushed: true });
|
|
}
|
|
};
|