diff --git a/CP_Source/Apps/Zoho_Assist/README.md b/CP_Source/Apps/Zoho_Assist/README.md new file mode 100644 index 00000000..2de55fef --- /dev/null +++ b/CP_Source/Apps/Zoho_Assist/README.md @@ -0,0 +1,22 @@ +# Zoho Assist (9 September) + +----- + +**NOTE:** Builder works for OS11.09+ (build with Ubuntu 22.04 - jammy) and OS12 (build with Ubuntu 20.04 - focal) + +----- + +| CP Information | | +|-----------------|------------| +| Package | [Zoho Assist](https://www.zoho.com/assist) +| Script Name | [zohoassist-cp-init-script.sh](build/zohoassist-cp-init-script.sh) | +| Packaging Notes | Details can be found in the build script | +| Package automation | [build-zohoassist-cp.sh](build/build-zohoassist-cp.sh) | + +----- + +**NOTE:** + +- The Deb file has a postinst script, this is copied into the CP and run as final desktop command. Look at this file if something is missing or need to adjust something. + +`/custom/zohoassist/usr/local/ZohoAssist/igel_postinst.sh` \ No newline at end of file diff --git a/CP_Source/Apps/Zoho_Assist/build/build-zohoassist-cp.sh b/CP_Source/Apps/Zoho_Assist/build/build-zohoassist-cp.sh new file mode 100755 index 00000000..ef914b57 --- /dev/null +++ b/CP_Source/Apps/Zoho_Assist/build/build-zohoassist-cp.sh @@ -0,0 +1,123 @@ +#!/bin/bash +#set -x +#trap read debug + +# Creating an IGELOS CP +## Development machine Ubuntu (OS11.09+ = 22.04; OS12 = 20.04) +CP="zohoassist" +ZIP_LOC="https://github.com/IGEL-Community/IGEL-Custom-Partitions/raw/master/CP_Packages/Apps" +ZIP_FILE="Zoho_Assist" +FIX_MIME="FALSE" +CLEAN="FALSE" +OS11_CLEAN="11.09.150" +OS12_CLEAN="12.4.2" +USERHOME_FOLDERS="FALSE" +USERHOME_FOLDERS_DIRS="" +APPARMOR="FALSE" +GETVERSION_FILE="${HOME}/Downloads/zohoassist_*.deb" +MISSING_LIBS_OS11="" +MISSING_LIBS_OS12="" + +VERSION_ID=$(grep "^VERSION_ID" /etc/os-release | cut -d "\"" -f 2) + +if [ "${VERSION_ID}" = "18.04" ]; then + MISSING_LIBS="${MISSING_LIBS_OS11}" + IGELOS_ID="OS11" +elif [ "${VERSION_ID}" = "22.04" ]; then + MISSING_LIBS="${MISSING_LIBS_OS11}" + IGELOS_ID="OS11" +elif [ "${VERSION_ID}" = "20.04" ]; then + MISSING_LIBS="${MISSING_LIBS_OS12}" + IGELOS_ID="OS12" +else + echo "Not a valid Ubuntu OS release. OS11.09+ needs 22.04 (jammy) and OS12 needs 20.04 (focal)." + exit 1 +fi + +if ! compgen -G "${GETVERSION_FILE}" > /dev/null; then + echo "***********" + echo "Obtain your instance of Zoho Assist ${GETVERSION_FILE} for Linux (Linux version) 64bit, save into $HOME/Downloads and re-run this script " + echo "***********" + exit 1 +fi + +mkdir build_tar +cd build_tar + +for lib in $MISSING_LIBS; do + apt-get download $lib +done + +mkdir -p custom/${CP} + +# start extract +dpkg -x "${GETVERSION_FILE}" custom/${CP} +# end extract + +find . -name "*.deb" | while read LINE +do + dpkg -x "${LINE}" custom/${CP} +done + +if [ "${FIX_MIME}" = "TRUE" ]; then + mv custom/${CP}/usr/share/applications/ custom/${CP}/usr/share/applications.mime +fi + +if [ "${USERHOME_FOLDERS}" = "TRUE" ]; then + for folder in $USERHOME_FOLDERS_DIRS; do + mkdir -p $folder + done +fi + +if [ "${CLEAN}" = "TRUE" ]; then + echo "+++++++======= STARTING CLEAN of USR =======+++++++" + wget https://raw.githubusercontent.com/IGEL-Community/IGEL-Custom-Partitions/master/utils/igelos_usr/clean_cp_usr_lib.sh + chmod a+x clean_cp_usr_lib.sh + wget https://raw.githubusercontent.com/IGEL-Community/IGEL-Custom-Partitions/master/utils/igelos_usr/clean_cp_usr_share.sh + chmod a+x clean_cp_usr_share.sh + if [ "${IGELOS_ID}" = "OS11" ]; then + ./clean_cp_usr_lib.sh ${OS11_CLEAN}_usr_lib.txt custom/${CP}/usr/lib + ./clean_cp_usr_share.sh ${OS11_CLEAN}_usr_share.txt custom/${CP}/usr/share + else + ./clean_cp_usr_lib.sh ${OS12_CLEAN}_usr_lib.txt custom/${CP}/usr/lib + ./clean_cp_usr_share.sh ${OS12_CLEAN}_usr_share.txt custom/${CP}/usr/share + fi + echo "+++++++======= DONE CLEAN of USR =======+++++++" +fi + +wget ${ZIP_LOC}/${ZIP_FILE}.zip + +unzip ${ZIP_FILE}.zip -d custom + +if [ "${APPARMOR}" = "TRUE" ]; then + mkdir -p custom/${CP}/config/bin + mkdir -p custom/${CP}/lib/systemd/system + mv custom/target/build/${CP}_cp_apparmor_reload custom/${CP}/config/bin + mv custom/target/build/igel-${CP}-cp-apparmor-reload.service custom/${CP}/lib/systemd/system/ +fi +mv custom/target/build/${CP}-cp-init-script.sh custom + +cd custom + +# edit inf file for version number +mkdir getversion +cd getversion +ar -x "${GETVERSION_FILE}" +tar xf control.tar* ./control ./postinst +VERSION=$(grep Version control | cut -d " " -f 2) +# copy postinst to CP +mv postinst ../${CP}/usr/local/ZohoAssist/igel_postinst.sh +#echo "Version is: " ${VERSION} +cd .. +sed -i "/^version=/c version=\"${VERSION}\"" target/${CP}.inf +#echo "${CP}.inf file is:" +#cat target/${CP}.inf + +# new build process into zip file +tar cvjf target/${CP}.tar.bz2 ${CP} ${CP}-cp-init-script.sh +zip -g ../${ZIP_FILE}.zip target/${CP}.tar.bz2 target/${CP}.inf +zip -d ../${ZIP_FILE}.zip "target/build/*" "target/igel/*" "target/target/*" +mv ../${ZIP_FILE}.zip ../../${ZIP_FILE}-${VERSION}_${IGELOS_ID}_igel01.zip + +cd ../.. +rm -rf build_tar diff --git a/CP_Source/Apps/Zoho_Assist/build/zohoassist-cp-init-script.sh b/CP_Source/Apps/Zoho_Assist/build/zohoassist-cp-init-script.sh new file mode 100755 index 00000000..97e3b3fa --- /dev/null +++ b/CP_Source/Apps/Zoho_Assist/build/zohoassist-cp-init-script.sh @@ -0,0 +1,49 @@ +#! /bin/bash +#set -x +#trap read debug + +ACTION="custompart-zohoassist_${1}" + +# mount point path +MP=$(get custom_partition.mountpoint) + +# custom partition path +CP="${MP}/zohoassist" + +# output to systemlog with ID amd tag +LOGGER="logger -it ${ACTION}" + +echo "Starting" | $LOGGER + +case "$1" in +init) + # Initial permissions + chown -R root:root "${CP}" | $LOGGER + # Linking files and folders on proper path + find ${CP} -printf "/%P\n" | while read DEST + do + if [ ! -z "${DEST}" -a ! -e "${DEST}" ]; then + # Remove the last slash, if it is a dir + [ -d $DEST ] && DEST=${DEST%/} | $LOGGER + if [ ! -z "${DEST}" ]; then + ln -sv "${CP}/${DEST}" "${DEST}" | $LOGGER + fi + fi + done + +;; +stop) + # Unlinking files and folders on proper path + find ${CP} -printf "/%P\n" | while read DEST + do + if [ -L "${DEST}" ]; then + unlink $DEST | $LOGGER + fi + done + +;; +esac + +echo "Finished" | $LOGGER + +exit 0 diff --git a/CP_Source/Apps/Zoho_Assist/igel/zohoassist-profile.xml b/CP_Source/Apps/Zoho_Assist/igel/zohoassist-profile.xml new file mode 100755 index 00000000..dd99fb97 --- /dev/null +++ b/CP_Source/Apps/Zoho_Assist/igel/zohoassist-profile.xml @@ -0,0 +1,36 @@ + + + + 10688 + Zoho Assist CP + + IGEL OS 11 + 11.09.150.01 + + Zoho Assist + false + false + true + + + true + false + + + 100M + false + + + + + [USERNAME] + https://[UMSSERVER]:8443/ums_filetransfer/zohoassist.inf + + /custom/zohoassist-cp-init-script.sh init + /custom/zohoassist-cp-init-script.sh stop + + true + + + + diff --git a/CP_Source/Apps/Zoho_Assist/target/zohoassist.inf b/CP_Source/Apps/Zoho_Assist/target/zohoassist.inf new file mode 100755 index 00000000..28aa6e9a --- /dev/null +++ b/CP_Source/Apps/Zoho_Assist/target/zohoassist.inf @@ -0,0 +1,7 @@ +[INFO] +[PART] +file="zohoassist.tar.bz2" +version="X.X.X" +size="100M" +name="zohoassist" +minfw="11.09.150" \ No newline at end of file