From 6b964b69935fcc52a1c0a95695ca436e00b6690f Mon Sep 17 00:00:00 2001 From: Jay Freeman Date: Thu, 14 Feb 2008 14:32:59 +0000 Subject: Drastically reworked bootstrap package. git-svn-id: http://svn.telesphoreo.org/trunk@88 514c082c-b64e-11dc-b46d-3d985efe055d --- over/usr/libexec/cydia/boot/godmode | Bin 0 -> 8956 bytes over/usr/libexec/cydia/boot/install.sh | 38 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100755 over/usr/libexec/cydia/boot/godmode create mode 100755 over/usr/libexec/cydia/boot/install.sh (limited to 'over/usr/libexec') diff --git a/over/usr/libexec/cydia/boot/godmode b/over/usr/libexec/cydia/boot/godmode new file mode 100755 index 000000000..9ff8ec9eb Binary files /dev/null and b/over/usr/libexec/cydia/boot/godmode differ diff --git a/over/usr/libexec/cydia/boot/install.sh b/over/usr/libexec/cydia/boot/install.sh new file mode 100755 index 000000000..455a27a38 --- /dev/null +++ b/over/usr/libexec/cydia/boot/install.sh @@ -0,0 +1,38 @@ +#!/usr/libexec/cydia/boot/bash + +shopt -s extglob nullglob +export PATH=/usr/libexec/cydia/boot + +function df_() { + free=$(df -B1 "$1") + free=${free% *%*} + free=${free%%*( )} + free=${free##* } + echo "${free}" +} + +for dir in \ + /Applications \ + /Library/Ringtones \ + /Library/Wallpaper \ + /System/Library/Fonts \ + /usr/share +do if [[ -d ${dir} && ! -h ${dir} ]]; then + used=$(du -bs "${dir}") + used=${used%%$'\t'*} + free=$(df_ /var) + + if [[ ${used} -lt ${free} ]]; then + base=$(basename "${dir}") + + new=/var/${base} + if [[ -e ${new} ]]; then + new=$(mktemp -d cydia.XXXXXX) + fi + + godmode mv -T "${dir}" "${new}" + godmode ln -s "${new}" "${dir}" + fi +fi; done + +[[ $(df_ /) -gt 33554432 && $(df_ /var) -gt 33554432 ]] -- cgit v1.2.3