2021-05-09 16:11:32 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "==============================================="
|
|
|
|
echo "CloverConfigPlistValidator Post-Install Script"
|
|
|
|
echo "==============================================="
|
|
|
|
|
2021-05-15 13:32:35 +02:00
|
|
|
echo "postinstall: Path to installer....... $1"
|
|
|
|
echo "postinstall: Path to destination..... $2"
|
|
|
|
echo "postinstall: Path to dest volume..... $3"
|
|
|
|
echo "postinstall: Root of system folder... $4"
|
|
|
|
######################################################
|
2021-05-09 16:11:32 +02:00
|
|
|
# If target volume root of current system then replace
|
|
|
|
# / with volume name.
|
2021-05-15 13:32:35 +02:00
|
|
|
if [ "$3" == "/" ]; then
|
2021-05-09 16:11:32 +02:00
|
|
|
DEST_VOL="/Volumes/"$( ls -1F /Volumes | sed -n 's:@$::p' )
|
|
|
|
else
|
2021-05-15 13:32:35 +02:00
|
|
|
DEST_VOL="$3"
|
2021-05-09 16:11:32 +02:00
|
|
|
fi
|
|
|
|
|
2021-05-10 16:20:12 +02:00
|
|
|
CLOVER_INSTALLER_PLIST_NEW="${DEST_VOL}@CLOVER_INSTALLER_PLIST_NEW@"
|
|
|
|
install_log="${DEST_VOL}/Private/tmp/Clover_Install_Log.txt"
|
|
|
|
installer_choice="@INSTALLER_CHOICE@"
|
|
|
|
|
2021-05-09 16:11:32 +02:00
|
|
|
# ---------------------------------------------
|
|
|
|
# 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
|