mirror of
https://github.com/AetherDroid/vendor_samsung_universal7570-common.git
synced 2025-09-08 01:08:04 -04:00
9 lines
184 B
Bash
9 lines
184 B
Bash
#!/system/bin/sh
|
|
# Copyright (c) 2016, Samsung Electronics Co., Ltd.
|
|
|
|
control=`getprop ro.use_data_netmgrd`
|
|
|
|
if [ "$control" = "true" ]; then
|
|
stop netmgrd
|
|
start netmgrd
|
|
fi
|