X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=contrib%2Fupdater%2F.cms.sh;fp=contrib%2Fupdater%2F.cms.sh;h=21888301f6636e25ffe8b153549fb7a3cc4e804f;hp=0000000000000000000000000000000000000000;hb=6297478ce1c3127044dbf1e72194c6ccee14f9ea;hpb=990637896e9b72d7fa45cfb52f854a8775ab5871;ds=sidebyside diff --git a/contrib/updater/.cms.sh b/contrib/updater/.cms.sh new file mode 100755 index 0000000000..21888301f6 --- /dev/null +++ b/contrib/updater/.cms.sh @@ -0,0 +1,39 @@ +#!/bin/sh +# Self-test +if test "`basename $0`" = ".cms.sh"; then + echo "Bye..." + exit 0 +fi + +# General config stuff +CMS_EXT_DIR="mxchange_ext_cms" + +# Versions +CMS_VER="0.0.1" +CMS_PRE="" + +# FTP directory +CMS_UPLOAD_DIR="$BASEDIR/$CMS_EXT_DIR" +CMS_FTP_DIR="content/htdocs/extensions" + +# Archive stuff +if test "$CMS_PRE" != ""; then + CMS_TAR="$BASENAME-$CMS-$CMS_VER-pre$CMS_PRE.tar" + CMS_ZIP="$BASENAME-$CMS-$CMS_VER-pre$CMS_PRE.zip" + else + CMS_TAR="$BASENAME-$CMS-$CMS_VER.tar" + CMS_ZIP="$BASENAME-$CMS-$CMS_VER.zip" +fi + +# Files stuff which will be archived +CMS_FILES="ChangeLog* README $CMS/ $CMS/DOCS/LICENSE*" + +# Base CMS extensions +CMS_EXT="support user register mydata other online sql_patches newsletter mediadata update country theme" + +# Extra ported extensions +CMS_EXTRA_EXT="autopurge bonus task club admins" + +# Extensions to be uploaded +#UPLOAD_CMS_EXT="$CMS_EXT $CMS_EXTRA_EXT" +UPLOAD_CMS_EXT=""