pastebin - collaborative debugging tool
kpaste.net RSS


Xposed Framework Backup Script
Posted by Anonymous on Thu 26th Jun 2014 12:37
raw | new post

  1. #!/sbin/sh
  2. #
  3. # /system/addon.d/90-xposed.sh
  4. # During an upgrade, this script backs up /system/bin/app_process,
  5. # /system is formatted and reinstalled, then the file is restored.
  6. #
  7.  
  8. . /tmp/backuptool.functions
  9.  
  10. list_files() {
  11. cat <<EOF
  12. bin/app_process
  13. EOF
  14. }
  15.  
  16. case "$1" in
  17.   backup)
  18.     list_files | while read FILE DUMMY; do
  19.       backup_file $S/"$FILE"
  20.     done
  21.   ;;
  22.   restore)
  23.     list_files | while read FILE REPLACEMENT; do
  24.       R=""
  25.       [ -n "$REPLACEMENT" ] && R="$S/$REPLACEMENT"
  26.       [ -f "$C/$S/$FILE" ] && restore_file $S/"$FILE" "$R"
  27.     done
  28.   ;;
  29.   pre-backup)
  30.     # Stub
  31.   ;;
  32.   post-backup)
  33.     # Stub
  34.   ;;
  35.   pre-restore)
  36.     cp -p $S/bin/app_process $S/bin/app_process.orig
  37.   ;;
  38.   post-restore)
  39.     # Stub
  40.   ;;
  41. esac

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at