0x1949 Team - FAZEMRX - MANAGER
Edit File: cpanel-plugin-common.postinst
#!/bin/bash # postinst script for cpanel-plugin-common # # see: dh_installdeb(1) set -e # Begin vars.sh #!/bin/bash # DO NOT EDIT # This file is regenerated each run. # If you want to add or change a variable, edit debify/settings.json and the vars hashref source /etc/os-release export OBS_REPO="x${NAME}_${VERSION_ID}" if ls debian/*.install &> /dev/null; then perl -pi -e 's/\${env:OBS_REPO}/$ENV{OBS_REPO}/' debian/*.install fi export DEB_INSTALL_ROOT="/usr/src/packages/BUILD/debian/tmp" export DEB_SOURCE_ROOT="/usr/src/packages/BUILD/debian/SOURCES_FROM_SPEC" export RPM_SOURCE_DIR="/usr/src/packages/BUILD/debian/SOURCES_FROM_SPEC" export __isa_bits="64" export __isa_name="x86" export __sourcedir="" export _bindir="/opt/cpanel//root/usr/bin" export _cpanel_plugins="/var/cpanel/plugins" export _datadir="/opt/cpanel//root/usr/share" export _defaultdocdir="/opt/cpanel//root/usr/share/doc" export _docdir="/opt/cpanel//root/usr/share/doc" export _exec_prefix="/opt/cpanel//root/usr" export _includedir="/opt/cpanel//root/usr/include" export _infodir="/opt/cpanel//root/usr/share/info" export _isa="" export _lib="lib64" export _libdir="/opt/cpanel//root/usr/lib64" export _libexecdir="/opt/cpanel//root/usr/libexec" export _localstatedir="/opt/cpanel//root/var" export _mandir="/opt/cpanel//root/usr/share/man" export _prefix="/opt/cpanel//root/usr" export _root_bindir="/opt/cpanel//root/usr/bin" export _root_datadir="/opt/cpanel//root/usr/share" export _root_exec_prefix="/opt/cpanel//root/usr" export _root_includedir="/opt/cpanel//root/usr/include" export _root_infodir="/opt/cpanel//root/usr/share/info" export _root_initddir="/opt/cpanel//root/etc/rc.d/init.d" export _root_libdir="/opt/cpanel//root/usr/lib64" export _root_libexecdir="/opt/cpanel//root/usr/libexec" export _root_localstatedir="/opt/cpanel//root/var" export _root_mandir="/opt/cpanel//root/usr/share/man" export _root_prefix="/opt/cpanel//root/usr" export _root_sbindir="/opt/cpanel//root/usr/sbin" export _root_sharedstatedir="/opt/cpanel//root/usr/com" export _root_sysconfdir="/opt/cpanel//root/etc" export _sbindir="/opt/cpanel//root/usr/sbin" export _scl_prefix="/opt/cpanel" export _scl_root="/opt/cpanel//root" export _sysconfdir="/opt/cpanel//root/etc" export _ulc="/usr/local/cpanel" export _unitdir="/usr/lib/systemd/system" export buildroot="/usr/src/packages/BUILD/debian/tmp" export config_docs_url="https://cpanel.net # TODO" export full_package_name="cpanel-plugin-common-1.4.1" export ix86="i386" export name="cpanel-plugin-common" export nil="0" export ns_name="ea" export pkg="" export pkg_name="" export pkgname="" export previous_version="1.4.0" export release="8" export release_prefix="8" export scl="" export scl_name="" export scl_name_base="" export scl_name_version="" export scl_prefix="" export version="1.4.1" export version_with_debian_revision="1.4.1-8" export SOURCE0="$DEB_SOURCE_ROOT/LICENSE" export SOURCE1="$DEB_SOURCE_ROOT/pkg.postinst" export SOURCE2="$DEB_SOURCE_ROOT/pkg.preinst" export SOURCE3="$DEB_SOURCE_ROOT/pkg.prerm" export SOURCE4="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_API_Plugins-can_show_promotions.openapi.yaml" export SOURCE5="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_API_Plugins-get_uuid.openapi.yaml" export SOURCE6="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_API_Plugins-reset_uuid.openapi.yaml" export SOURCE7="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_API_Plugins.pm" export SOURCE8="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_Admin_Modules_Cpanel_plugin_method_cache.pm" export SOURCE9="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_Plugins_Cache.pm" export SOURCE10="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_Plugins_Promotions.pm" export SOURCE11="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_Plugins_RestApiClient.pm" export SOURCE12="$DEB_SOURCE_ROOT/_usr_local_cpanel_Cpanel_Plugins_UUID.pm" export SOURCE13="$DEB_SOURCE_ROOT/_usr_local_cpanel_scripts_manage_extra_marketing" export SOURCE14="$DEB_SOURCE_ROOT/_usr_local_cpanel_t_medium_Cpanel-API-Plugins.t" export SOURCE15="$DEB_SOURCE_ROOT/_usr_local_cpanel_t_medium_Cpanel-Admin-Modules-Cpanel-plugin_method_cache.t" export SOURCE16="$DEB_SOURCE_ROOT/_usr_local_cpanel_t_medium_Cpanel-Plugins-Cache.t" export SOURCE17="$DEB_SOURCE_ROOT/_usr_local_cpanel_t_medium_Cpanel-Plugins-Promotions.t" export SOURCE18="$DEB_SOURCE_ROOT/_usr_local_cpanel_t_medium_Cpanel-Plugins-RestApiClient.t" export SOURCE19="$DEB_SOURCE_ROOT/_usr_local_cpanel_t_medium_Cpanel-Plugins-UUID.t" export SOURCE20="$DEB_SOURCE_ROOT/_var_cpanel_plugins_common_README.md" # End vars.sh # summary of how this script can be called: # * <postinst> `configure' <most-recently-configured-version> # * <old-postinst> `abort-upgrade' <new version> # * <conflictor's-postinst> `abort-remove' `in-favour' <package> # <new-version> # * <postinst> `abort-remove' # * <deconfigured's-postinst> `abort-deconfigure' `in-favour' # <failed-install-package> <version> `removing' # <conflicting-package> <version> # for details, see https://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # Contents of SOURCES/pkg.postinst #!/bin/bash PLUGIN_DIR=/var/cpanel/plugins/common DEFAULT_THEME=jupiter # First Install if [[ "$1" == "1" || "$1" == "abort-upgrade" ]]; then # TODO: install stuff : fi # Upgrades if [[ "$1" == "2" || "$1" == "configure" ]]; then # TODO: upgrade stuff : fi # End SOURCES/pkg.postinst exit 0