Delete config.sh

This commit is contained in:
Didgeridoohan 2019-04-05 23:10:34 +02:00 committed by GitHub
parent 1409f398ee
commit 69b7ab1367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,52 +0,0 @@
##########################################################################################
#
# Magisk Module Template Config Script
# by topjohnwu
#
##########################################################################################
##########################################################################################
# Configs
##########################################################################################
AUTOMOUNT=true
PROPFILE=false
POSTFSDATA=true
LATESTARTSERVICE=true
##########################################################################################
# Installation Message
##########################################################################################
print_modname() {
ui_print "*******************************"
ui_print "MagiskHide Props Config $MODVERSION"
ui_print " By Didgeridoohan @XDA"
ui_print "*******************************"
}
##########################################################################################
# Replace list
##########################################################################################
REPLACE="
"
##########################################################################################
# Permissions
##########################################################################################
set_permissions() {
set_perm_recursive $MODPATH 0 0 0755 0644
set_perm $MODPATH/system/$BIN/props 0 0 0777
set_perm $LATEFILE 0 0 0755
}
##########################################################################################
# Installation variables and functions for the Magisk module "MagiskHide Props Config"
# Copyright (c) 2018-2019 Didgeridoohan @ XDA Developers.
# Licence: MIT
##########################################################################################
# Load functions and variables
INSTFN=true
. $INSTALLER/common/util_functions.sh