7e52cbfa0a
Signed-off-by: Eddie Ringle <eddie.ringle@gmail.com>
18 lines
243 B
Bash
Executable File
18 lines
243 B
Bash
Executable File
#!/system/bin/sh
|
|
#
|
|
# Compcache handler
|
|
# Decides whether or not Compcache is enabled
|
|
#
|
|
|
|
PROP=$(cat /data/property/persist.service.compcache)
|
|
|
|
if [ $PROP == 1 ]
|
|
then
|
|
`dirname $0`/compcache start
|
|
else
|
|
`dirname $0`/compcache stop
|
|
fi
|
|
|
|
exit 0
|
|
|