CloverBootloader/CloverPackage/package/Scripts.templates/CloverConfigPlistValidator/postinstall
SergeySlice 8da3efae13 repair permissions for postinstall
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
2021-05-15 08:58:46 +03:00

39 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
echo "==============================================="
echo "CloverConfigPlistValidator Post-Install Script"
echo "==============================================="
#echo "DEBUG: $ 1 = Full path to the installation package the installer app is processing: " $1
#echo "DEBUG: $ 2 = Full path to the installation destination: " $2
#echo "DEBUG: $ 3 = Installation volume (mountpoint) to receive the payload: " $3
#echo "DEBUG: $ 4 = Root directory for the system: " $4
echo "preinstall: Path to installer....... $1"
echo "preinstall: Path to destination..... $2"
echo "preinstall: Path to dest volume..... $3"
echo "preinstall: Root of system folder... $4"
# If target volume root of current system then replace
# / with volume name.
if [ "$2" == "/" ]; then
DEST_VOL="/Volumes/"$( ls -1F /Volumes | sed -n 's:@$::p' )
else
DEST_VOL="$2"
fi
#############################################################################
CLOVER_INSTALLER_PLIST_NEW="${DEST_VOL}@CLOVER_INSTALLER_PLIST_NEW@"
install_log="${DEST_VOL}/Private/tmp/Clover_Install_Log.txt"
installer_choice="@INSTALLER_CHOICE@"
# ---------------------------------------------
# Fix chmod / chown attributes
# ---------------------------------------------
chmod a+x /usr/local/bin/ccpv
# Mark that the option was selected
/usr/libexec/PlistBuddy -c "Add $installer_choice bool true" "$CLOVER_INSTALLER_PLIST_NEW" >/dev/null