From f95ee159b65b5e02df2043e7717eef28c05b92bc Mon Sep 17 00:00:00 2001 From: B Stack Date: Sat, 9 Dec 2017 23:07:34 -0500 Subject: rewrite deploy.sh and update deploy.conf Rewrote deploy.sh to work with multiple files, such as: - freefilesync-9.4-2.fc25.x86_64.rpm - freefilesync-9.4-2.fc26.x86_64.rpm Added sections to deploy.conf for freebsd. --- etc/mirror/deploy.conf | 23 ++- usr/share/mirror/deploy.sh | 476 ++++++++++++++++++++++++-------------------- usr/share/mirror/deploy1.sh | 312 +++++++++++++++++++++++++++++ 3 files changed, 591 insertions(+), 220 deletions(-) create mode 100755 usr/share/mirror/deploy1.sh diff --git a/etc/mirror/deploy.conf b/etc/mirror/deploy.conf index 6a9a49c..6dba18d 100644 --- a/etc/mirror/deploy.conf +++ b/etc/mirror/deploy.conf @@ -21,15 +21,19 @@ [input] type=input location=/mnt/public/packages -packagedir=${inputlocation}/${packagename} +packagedir=${location}/${packagename} [smith122rpm] # type may either be input or destination. Input is used only in the [input] zone. Everything else is a destination. type=destination -# flavor is what type of package to send. Options include centos, redhat, ubuntu, debian, tar, tarball -# default flavor=tarball -flavor=centos +# flavor is what type of package to send. Options include: +# * rpm centos redhat fedora korora +# * deb ubuntu debian devuan +# * tar tarball +# * freebsd bsd +# default: flavor=tarball +flavor=rpm # base location. Required to function. location=/mnt/public/www/smith122/repo/rpm @@ -38,10 +42,6 @@ location=/mnt/public/www/smith122/repo/rpm # default packagedir= packagedir=${location}/${packagename} -# If link is yes, it will make a symlink to the master tarball -# default link=no -#link=yes - # If updatescript is executable, if the zone is updated this command will be called # default updatescript= updatescript=/mnt/public/www/smith122/repo/rpm/update-smith122rpm.sh @@ -59,3 +59,10 @@ flavor=tarball location=/mnt/public/www/smith122/repo/tar updatescript=/mnt/public/www/smith122/repo/tar/update-smith122tar.sh packagedir=${location}/${packagename} + +[smith122freebsd] +type=destination +flavor=freebsd +location=/mnt/public/www/smith122/repo/freebsd +updatescript=/mnt/public/www/smith122/repo/freebsd/update-smith122freebsd.sh +packagedir=${location}/${packagename} diff --git a/usr/share/mirror/deploy.sh b/usr/share/mirror/deploy.sh index 5c8e8ff..1ff91bd 100755 --- a/usr/share/mirror/deploy.sh +++ b/usr/share/mirror/deploy.sh @@ -1,21 +1,19 @@ #!/bin/sh -# File: /usr/share/mirror/deploy.sh +# Filename: deploy.sh +# Location: # Author: bgstack15@gmail.com -# Startdate: 2016-07-14 09:53:09 -# Title: Script that Deploys a Package -# Purpose: To make it easy to deploy to the mirror a new version of a package -# Package: mirror +# Startdate: 2017-12-09 14:21:26 +# Title: Script that Deploys Packages and Files to Directories Served to the Web +# Purpose: +# Package: # History: -# 2017-02-06 Added --noupdate option -# 2017-05-20 Added debugging info for thispackagedir. Also displays better error message when skipping source file for a zone due to its absence. +# 2017-12-09 rewrite of deploy1.sh # Usage: -# Reference: ftemplate.sh 2016-07-12a; framework.sh 2016-05-25a -# mirror-master from mirror-1.0-2.noarch.rpm -# This script has a symlink: /usr/local/bin/deploy +# Reference: ftemplate.sh 2017-11-11a; framework.sh 2017-11-11a +# sed nongreedy match https://stackoverflow.com/a/1103159/3569534 # Improve: -# * provide better package name and version parsing -fiversion="2016-05-25a" -deployversion="2017-04-04a" +fiversion="2017-11-11a" +deployversion="2017-12-09a" usage() { less -F >&2 <= 4. +5 All variables from conf file ENDUSAGE } -function fexit { - errornum="${1}"; shift - ferror "$@" - exit "${errornum}" -} +# DEFINE FUNCTIONS -function fileaction { - thisaction="${1}" - thisleftfile="${2}" - thisrightfile="${3}" - case "${thisaction}" in - copy) thisfacommand="/bin/cp -p";; - symlink) thisfacommand="/bin/ln -sf";; - *) thisfacommand=echo;; +fileaction() { + # call: fileaction copy ${thisfile} ${destdir} + debuglev 11 && ferror "CALLED: fileaction $@" + __thisaction="${1}" + __thisleftfile="${2}" + ! test -d "${3}" && mkdir -p "${3}" + __thisrightdir="$( fwhich "${3}" )" + case "${__thisaction}" in + copy) __thisfacommand="/bin/cp -p";; + symlink) __thisfacommand="/bin/ln -sf"; ferror "fileaction symlink not supported any more. Continuing..." && break ;; + *) __thisfacommand=echo;; esac - debuglev 2 && { ferror ${thisfacommand} "${thisleftfile}" "${thisrightfile}"; } - ! debuglev 4 && { ${thisfacommand} "${thisleftfile}" "${thisrightfile}"; } 2>&1 | grep -viE "failed to preserve ownership for" + debuglev 2 && { ferror ${__thisfacommand} "${__thisleftfile}" "${__thisrightdir}/"; } + ! debuglev 4 && { ${__thisfacommand} "${__thisleftfile}" "${__thisrightdir}"; } 2>&1 | grep -viE "failed to preserve ownership for|preserving times for.*: Operation not permitted" + thiszoneused=1 } -# DEFINE FUNCTIONS - # DEFINE TRAPS -function clean_deploy { - #rm -f $logfile >/dev/null 2>&1 - [ ] #use at end of entire script if you need to clean up tmpfiles +clean_deploy() { + # use at end of entire script if you need to clean up tmpfiles + rm -f ${tmpfile1} 1>/dev/null 2>&1 + : } -function CTRLC { - #trap "CTRLC" 2 - [ ] #useful for controlling the ctrl+c keystroke +CTRLC() { + # use with: trap "CTRLC" 2 + # useful for controlling the ctrl+c keystroke + : } -function CTRLZ { - #trap "CTRLZ" 18 - [ ] #useful for controlling the ctrl+z keystroke +CTRLZ() { + # use with: trap "CTRLZ" 18 + # useful for controlling the ctrl+z keystroke + : } -function parseFlag { - flag=$1 +parseFlag() { + flag="$1" hasval=0 - case $flag in + case ${flag} in # INSERT FLAGS HERE "d" | "debug" | "DEBUG" | "dd" ) setdebug; ferror "debug level ${debug}";; "u" | "usage" | "help" | "h" ) usage; exit 1;; "V" | "fcheck" | "version" ) ferror "${scriptfile} version ${deployversion}"; exit 1;; - #"i" | "infile" | "inputfile" ) getval;infile1=$tempval;; - "c" | "conffile" ) getval;conffile=$tempval;; - "n" | "noupdate" ) noupdate=1;; + #"i" | "infile" | "inputfile" ) getval; infile1=${tempval};; + "c" | "conf" | "conffile" | "config" ) getval; infile1="${tempval}";; + "n" | "noupdate" | "no-update" ) noupdate=1;; esac - debuglev 10 && { [[ hasval -eq 1 ]] && ferror "flag: $flag = $tempval" || ferror "flag: $flag"; } + debuglev 10 && { test ${hasval} -eq 1 && ferror "flag: ${flag} = ${tempval}" || ferror "flag: ${flag}"; } } # DETERMINE LOCATION OF FRAMEWORK -while read flocation; do if [[ -x $flocation ]] && [[ $( $flocation --fcheck ) -ge 20160229 ]]; then frameworkscript=$flocation; break; fi; done <&2 && exit 4 - -# REACT TO OPERATING SYSTEM TYPE -case $( uname -s ) in - AIX) [ ];; - Linux) [ ];; - *) echo "$scriptfile: 3. Indeterminate OS: $( uname -s )" 1>&2 && exit 3;; -esac +test -z "${frameworkscript}" && echo "$0: framework not found. Aborted." 1>&2 && exit 4 # INITIALIZE VARIABLES # variables set in framework: # today server thistty scriptdir scriptfile scripttrim # is_cronjob stdin_piped stdout_piped stderr_piped sendsh sendopts . ${frameworkscript} || echo "$0: framework did not run properly. Continuing..." 1>&2 -conffile=/etc/mirror/deploy.conf +default_infile1=/etc/mirror/deploy.conf +infile1="${default_infile1}" +outfile1= logfile=${scriptdir}/${scripttrim}.${today}.out -interestedparties="bgstack15@gmail.com" -noupdate=0 # can be adjusted with a flag +tmpfile1="$( mktemp )" +define_if_new interestedparties "bgstack15@gmail.com" +# SIMPLECONF +define_if_new default_conffile "/etc/deploy/deploy.conf" +define_if_new defuser_conffile ~/.config/deploy/deploy.conf -# REACT TO ROOT STATUS -case $is_root in - 1) # proper root - [ ] ;; - sudo|"") # sudo to root or not root at all - ferror "${scriptfile}: 5. Please run as root. Aborted." - exit 5 - ;; +# REACT TO OPERATING SYSTEM TYPE +case $( uname -s ) in + Linux) : ;; + FreeBSD) : ;; + *) ferror "${scriptfile}: 3. Indeterminate OS: $( uname -s )" && exit 3;; esac +## REACT TO ROOT STATUS +#case ${is_root} in +# 1) # proper root +# : ;; +# sudo) # sudo to root +# : ;; +# "") # not root at all +# #ferror "${scriptfile}: 5. Please run as root or sudo. Aborted." +# #exit 5 +# : +# ;; +#esac + # SET CUSTOM SCRIPT AND VALUES -#setval 1 sendsh sendopts</dev/null | head -n1 ) - ;; - debian|ubuntu) - sourcefile=$( { find "${inputpackagedir}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.deb"; find "${inputlocation}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.deb";} 2>/dev/null | head -n1 ) - ;; - *) # including tarball, tar - sourcefile=$( { find "${inputpackagedir}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; find "${inputlocation}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; } 2>/dev/null | head -n1 ) - ;; - esac +## DEBUG SIMPLECONF +#debuglev 5 && { +# ferror "Using values" +# # used values: EX_(OPT1|OPT2|VERBOSE) +# set | grep -iE "^EX_" 1>&2 +#} - # DERIVE TARBALL FILE - sourcetarfile=$( { find "${inputpackagedir}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; find "${inputlocation}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; } 2>/dev/null | head -n1 ) - debuglev 5 && ferror "sourcefile=${sourcefile}" - debuglev 5 && ferror "sourcetarfile=${sourcetarfile}" +# Debug section +debuglev 5 && set | grep -E '^(X_|zones=|packagename|packageversion)' 1>&2 - # CALCULATE DESTINATION FILE - destinationdir="$( { test -d "$( readlink -f "$( find "${thispackagedir}" -maxdepth 0 \( -type d -o -type l \) )" )" && echo "${thispackagedir}"; find "${thislocation}" -maxdepth 0 -type d; } 2>/dev/null | grep -viE "^$" | head -n1 )" - #debuglev 5 && ferror "destinationdir=${destinationdir}" - [[ ! -d "${destinationdir}" ]] && ferror "Skipped ${thiszone} file ${sourcefile}: cannot be copied to invalid directory \"${destinationdir}\"." && continue - destinationfile=$( echo "${destinationdir}/$( basename "${sourcefile}" )" | sed -e 's!\/\+!\/!g;' ) - debuglev 5 && ferror "destinationfile=${destinationfile}" +## CONFIRM the input zone exists +[[ -z "${X_input_type}" ]] || [[ ! "${X_input_type}" = "input" ]] && fexit 6 "Invalid inputtype: \"${X_input_type}\". Must be \"input\" and in zone named \"input\". Aborted." +[[ -z "${X_input_location}" ]] || [[ ! -d "${X_input_location}" ]] && fexit 6 "Invalid inputlocation: \"${X_input_location}\". Confirm directory exists. Aborted." +# [[ -n "${X_input_packagedir}" ]] && eval X_input_packagedir="${X_input_packagedir}" - # PERFORM FILE COPY - if [[ ! -f "${sourcefile}" ]]; - then - ferror "Skipped ${thiszone} source for ${thispackage}: not found." - else - fileaction copy "${sourcefile}" "${destinationfile}" - thiszoneused=1 - fi +# MAIN LOOP +#{ + for thiszone in ${zones[@]} ; + do + eval thistype="\${X_${thiszone}_type}" + case "${thistype}" in + input) + #echo "INPUT ZONE IS HERE" + eval thisinputlocation="\${X_input_location}" + eval thisinputpackagedir="$( eval echo "\${X_input_packagedir}" | sed -r -e "s/\\$\{(location)/\$\{X_${thiszone}_\1/g;" )" + ;; + destination) + #set | grep -E "X_${thiszone}_" + eval thisflavor="\${X_${thiszone}_flavor}" + eval thislocation="\${X_${thiszone}_location}" + eval thisupdatescript="\${X_${thiszone}_updatescript}" + eval thispackagedir="$( eval echo "\${X_${thiszone}_packagedir}" | sed -r -e "s/\\$\{(location)/\$\{X_${thiszone}_\1/g;" )" - # IF ZONELINK - eval thislink=\${${thiszone}link} - case "${thislink}" in - "1"|"y"|"yes"|"Y"|"YES") - # have already derived tarball file - if [[ ! -f "${sourcetarfile}" ]]; - then - # link was yes, but tarball does not exist, so soft error. - ferror "Skipped ${thiszone} symlink for ${sourcetarfile}: not found." - else - # CALCULATE DESTINATION TARBALL FILE - destinationtarfile="$( echo "${destinationdir}/$( basename "${sourcetarfile}" )" | sed -e 's!\/\+!\/!g;' )" + #echo "------------" + #echo "thislocation=${thislocation}" + #echo "thispackagedir=${thispackagedir}" + + # find the files to move to thispackagedir + notregex='' + case "${thisflavor}" in + rpm | centos | redhat | fedora | korora ) + filetyperegex='.*.rpm' + ;; + deb | debian | ubuntu | devuan | mint ) + filetyperegex='.*.deb' + ;; + freebsd | bsd ) + filetyperegex='.*freebsd.*\(.tar.gz\|.tgz\)' + ;; + tar | tarball | targz | tar.gz ) + filetyperegex='.*\(.tar.gz\|.tgz\)' + notregex='.*freebsd.*' + ;; + * ) + ferror "For zone \"${thiszone}\", will use default flavor \"tarball\"." + filetyperegex='.*\(.tar.gz\|.tgz\)' + notregex='.*freebsd.*' + ;; + esac + filetyperegex=".*${packagename}-${packageversion}.*${filetyperegex}" + #echo find "${thisinputpackagedir}" -type f -regex "${filetyperegex}" ! -regex "${notregex}" + find "${thisinputpackagedir}" -type f -regex "${filetyperegex}" ! -regex "${notregex}" > "${tmpfile1}" - # PERFORM TARBALL SYMLINK - fileaction symlink "${sourcetarfile}" "${destinationtarfile}" - fi - ;; - *) # no - [ ] - ;; - esac + # perform file action + thiszoneused=0 + while read leftfile ; + do + fileaction copy "${leftfile}" "${thispackagedir}/" + done < "${tmpfile1}" - # IF ZONE WAS UPDATED - eval thisupdatescript=\${${thiszone}updatescript} - if [[ thiszoneused -ne 0 ]]; - then - if test "${noupdate}" = "1"; + # execute update script + if ! test "${thiszoneused}" = "0" ; then - # told to not execute any update scripts at all. - debuglev 1 && ferror "Skipping any execute scripts for ${thiszone}." - else - [[ -n "${thisupdatescript}" ]] && { - if [[ ! -x "${thisupdatescript}" ]]; + #echo "THISZONEUSED" + if ! test "${noupdate}" = "1" ; + then + #echo "NOUPDATE IS ZERO" + if test -n "${thisupdatescript}" ; then - ferror "Cannot execute the updatescript ${thisupdatescript}. Skipped." + #echo "THISUPDATESCRIPT IS NOT NULL" + if test -x "${thisupdatescript}" ; + then + debuglev 2 && ferror "Executing updatescript \"${thisupdatescript}\"" + ! debuglev 4 && fsudo "${thisupdatescript}" + else + ferror "${scriptfile}: Unable to execute updatescript \"${thisupdatescript}\". Continuing..." + fi else - # is executable - debuglev 2 && ferror "Execute ${thisupdatescript}" - ! debuglev 4 && ${thisupdatescript} + # no updatescript specified, so pass + : fi - } + else + # noupdate=1, which means do not call the update scripts + : + fi fi - fi - - } # end if-not-input-zone + + ;; # case type=destination + esac done -#} | tee -a $logfile +#} | tee -a ${logfile} # EMAIL LOGFILE -#$sendsh $sendopts "$server $scriptfile out" $logfile $interestedparties +#${sendsh} ${sendopts} "${server} ${scriptfile} out" ${logfile} ${interestedparties} + +trap '' 0 # +clean_deploy + +# STOP THE READ CONFIG FILE +exit 0 +fi; done; } diff --git a/usr/share/mirror/deploy1.sh b/usr/share/mirror/deploy1.sh new file mode 100755 index 0000000..5c8e8ff --- /dev/null +++ b/usr/share/mirror/deploy1.sh @@ -0,0 +1,312 @@ +#!/bin/sh +# File: /usr/share/mirror/deploy.sh +# Author: bgstack15@gmail.com +# Startdate: 2016-07-14 09:53:09 +# Title: Script that Deploys a Package +# Purpose: To make it easy to deploy to the mirror a new version of a package +# Package: mirror +# History: +# 2017-02-06 Added --noupdate option +# 2017-05-20 Added debugging info for thispackagedir. Also displays better error message when skipping source file for a zone due to its absence. +# Usage: +# Reference: ftemplate.sh 2016-07-12a; framework.sh 2016-05-25a +# mirror-master from mirror-1.0-2.noarch.rpm +# This script has a symlink: /usr/local/bin/deploy +# Improve: +# * provide better package name and version parsing +fiversion="2016-05-25a" +deployversion="2017-04-04a" + +usage() { + less -F >&2 <&1 | grep -viE "failed to preserve ownership for" +} + +# DEFINE FUNCTIONS + +# DEFINE TRAPS + +function clean_deploy { + #rm -f $logfile >/dev/null 2>&1 + [ ] #use at end of entire script if you need to clean up tmpfiles +} + +function CTRLC { + #trap "CTRLC" 2 + [ ] #useful for controlling the ctrl+c keystroke +} + +function CTRLZ { + #trap "CTRLZ" 18 + [ ] #useful for controlling the ctrl+z keystroke +} + +function parseFlag { + flag=$1 + hasval=0 + case $flag in + # INSERT FLAGS HERE + "d" | "debug" | "DEBUG" | "dd" ) setdebug; ferror "debug level ${debug}";; + "u" | "usage" | "help" | "h" ) usage; exit 1;; + "V" | "fcheck" | "version" ) ferror "${scriptfile} version ${deployversion}"; exit 1;; + #"i" | "infile" | "inputfile" ) getval;infile1=$tempval;; + "c" | "conffile" ) getval;conffile=$tempval;; + "n" | "noupdate" ) noupdate=1;; + esac + + debuglev 10 && { [[ hasval -eq 1 ]] && ferror "flag: $flag = $tempval" || ferror "flag: $flag"; } +} + +# DETERMINE LOCATION OF FRAMEWORK +while read flocation; do if [[ -x $flocation ]] && [[ $( $flocation --fcheck ) -ge 20160229 ]]; then frameworkscript=$flocation; break; fi; done <&2 && exit 4 + +# REACT TO OPERATING SYSTEM TYPE +case $( uname -s ) in + AIX) [ ];; + Linux) [ ];; + *) echo "$scriptfile: 3. Indeterminate OS: $( uname -s )" 1>&2 && exit 3;; +esac + +# INITIALIZE VARIABLES +# variables set in framework: +# today server thistty scriptdir scriptfile scripttrim +# is_cronjob stdin_piped stdout_piped stderr_piped sendsh sendopts +. ${frameworkscript} || echo "$0: framework did not run properly. Continuing..." 1>&2 +conffile=/etc/mirror/deploy.conf +logfile=${scriptdir}/${scripttrim}.${today}.out +interestedparties="bgstack15@gmail.com" +noupdate=0 # can be adjusted with a flag + +# REACT TO ROOT STATUS +case $is_root in + 1) # proper root + [ ] ;; + sudo|"") # sudo to root or not root at all + ferror "${scriptfile}: 5. Please run as root. Aborted." + exit 5 + ;; +esac + +# SET CUSTOM SCRIPT AND VALUES +#setval 1 sendsh sendopts</dev/null | head -n1 ) + ;; + debian|ubuntu) + sourcefile=$( { find "${inputpackagedir}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.deb"; find "${inputlocation}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.deb";} 2>/dev/null | head -n1 ) + ;; + *) # including tarball, tar + sourcefile=$( { find "${inputpackagedir}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; find "${inputlocation}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; } 2>/dev/null | head -n1 ) + ;; + esac + + # DERIVE TARBALL FILE + sourcetarfile=$( { find "${inputpackagedir}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; find "${inputlocation}" -regex ".*${packagename}-${packageversion}.*" -regex ".*.master.tgz"; } 2>/dev/null | head -n1 ) + debuglev 5 && ferror "sourcefile=${sourcefile}" + debuglev 5 && ferror "sourcetarfile=${sourcetarfile}" + + # CALCULATE DESTINATION FILE + destinationdir="$( { test -d "$( readlink -f "$( find "${thispackagedir}" -maxdepth 0 \( -type d -o -type l \) )" )" && echo "${thispackagedir}"; find "${thislocation}" -maxdepth 0 -type d; } 2>/dev/null | grep -viE "^$" | head -n1 )" + #debuglev 5 && ferror "destinationdir=${destinationdir}" + [[ ! -d "${destinationdir}" ]] && ferror "Skipped ${thiszone} file ${sourcefile}: cannot be copied to invalid directory \"${destinationdir}\"." && continue + destinationfile=$( echo "${destinationdir}/$( basename "${sourcefile}" )" | sed -e 's!\/\+!\/!g;' ) + debuglev 5 && ferror "destinationfile=${destinationfile}" + + # PERFORM FILE COPY + if [[ ! -f "${sourcefile}" ]]; + then + ferror "Skipped ${thiszone} source for ${thispackage}: not found." + else + fileaction copy "${sourcefile}" "${destinationfile}" + thiszoneused=1 + fi + + # IF ZONELINK + eval thislink=\${${thiszone}link} + case "${thislink}" in + "1"|"y"|"yes"|"Y"|"YES") + # have already derived tarball file + if [[ ! -f "${sourcetarfile}" ]]; + then + # link was yes, but tarball does not exist, so soft error. + ferror "Skipped ${thiszone} symlink for ${sourcetarfile}: not found." + else + # CALCULATE DESTINATION TARBALL FILE + destinationtarfile="$( echo "${destinationdir}/$( basename "${sourcetarfile}" )" | sed -e 's!\/\+!\/!g;' )" + + # PERFORM TARBALL SYMLINK + fileaction symlink "${sourcetarfile}" "${destinationtarfile}" + fi + ;; + *) # no + [ ] + ;; + esac + + # IF ZONE WAS UPDATED + eval thisupdatescript=\${${thiszone}updatescript} + if [[ thiszoneused -ne 0 ]]; + then + if test "${noupdate}" = "1"; + then + # told to not execute any update scripts at all. + debuglev 1 && ferror "Skipping any execute scripts for ${thiszone}." + else + [[ -n "${thisupdatescript}" ]] && { + if [[ ! -x "${thisupdatescript}" ]]; + then + ferror "Cannot execute the updatescript ${thisupdatescript}. Skipped." + else + # is executable + debuglev 2 && ferror "Execute ${thisupdatescript}" + ! debuglev 4 && ${thisupdatescript} + fi + } + fi + fi + + } # end if-not-input-zone + done +#} | tee -a $logfile + +# EMAIL LOGFILE +#$sendsh $sendopts "$server $scriptfile out" $logfile $interestedparties -- cgit