Circlean/fs/opt/groomer/groomer.sh

123 lines
3.2 KiB
Bash
Raw Normal View History

2013-01-16 16:34:06 +01:00
#!/bin/bash
set -e
2014-03-26 16:40:19 +01:00
set -x
2013-01-16 16:34:06 +01:00
2015-10-09 21:18:33 +02:00
# To make debugging easier
echo "KittenGroomer: in groomer.sh" 1>&2
2013-02-15 18:47:13 +01:00
source ./constraint.sh
if ! [ "${ID}" -ge "1000" ]; then
echo "This script cannot run as root."
exit
fi
source ./functions.sh
2013-01-16 16:34:06 +01:00
clean(){
echo Cleaning.
${SYNC}
2013-02-08 18:07:26 +01:00
# Cleanup source
pumount ${SRC}
2013-02-08 18:07:26 +01:00
# Cleanup destination
rm -rf ${TEMP}
rm -rf ${ZIPTEMP}
pumount ${DST}
2013-02-08 18:07:26 +01:00
2013-02-15 18:47:13 +01:00
exit
2013-01-16 16:34:06 +01:00
}
trap clean EXIT TERM INT
2013-01-16 16:34:06 +01:00
2013-02-08 18:07:26 +01:00
# De we have a source device
if [ ! -b ${DEV_SRC} ]; then
echo "Source device (${DEV_SRC}) does not exists."
exit
fi
2013-02-08 18:07:26 +01:00
# Find the partition names on the source device
DEV_PARTITIONS=`ls "${DEV_SRC}"* | grep "${DEV_SRC}[1-9][0-6]*" || true`
2014-03-26 16:40:19 +01:00
if [ -z "${DEV_PARTITIONS}" ]; then
echo "${DEV_SRC} does not have any partitions."
exit
fi
2013-02-08 18:07:26 +01:00
# Do we have a destination device
if [ ! -b "/dev/${DEV_DST}" ]; then
echo "Destination device (/dev/${DEV_DST}) does not exists."
exit
fi
2013-02-15 18:47:13 +01:00
# mount and prepare destination device
if ${MOUNT}|grep ${DST}; then
${PUMOUNT} ${DST} || true
fi
2013-02-15 18:47:13 +01:00
# uid= only works on a vfat FS. What should wedo if we get an ext* FS ?
${PMOUNT} -w ${DEV_DST} ${DST}
if [ ${?} -ne 0 ]; then
echo "Unable to mount /dev/${DEV_DST} on /media/${DST}"
2013-02-08 18:07:26 +01:00
exit
2013-01-16 16:34:06 +01:00
else
echo "Target USB device (/dev/${DEV_DST}) mounted at /media/${DST}"
rm -rf "/media/${DST}/FROM_PARTITION_"*
2013-01-16 16:34:06 +01:00
# prepare temp dirs and make sure it's empty
mkdir -p "${TEMP}"
mkdir -p "${ZIPTEMP}"
mkdir -p "${LOGS}"
2013-01-16 16:34:06 +01:00
rm -rf "${TEMP}/"*
rm -rf "${ZIPTEMP}/"*
rm -rf "${LOGS}/"*
2013-01-16 16:34:06 +01:00
fi
2013-02-08 18:07:26 +01:00
# Groom da kitteh!
2015-04-02 17:40:39 +02:00
# Find the FS types
# lsblk -n -o name,fstype,mountpoint,label,uuid -r
2013-01-16 16:34:06 +01:00
PARTCOUNT=1
2013-02-08 18:07:26 +01:00
for partition in ${DEV_PARTITIONS}
2013-01-16 16:34:06 +01:00
do
2013-02-08 18:07:26 +01:00
# Processing a partition
echo "Processing partition: ${partition}"
2014-03-26 16:40:19 +01:00
if [ `${MOUNT} | grep -c ${SRC}` -ne 0 ]; then
${PUMOUNT} ${SRC}
fi
${PMOUNT} -w ${partition} ${SRC}
ls "/media/${SRC}" | grep -i autorun.inf | xargs -I {} mv "/media/${SRC}"/{} "/media/${SRC}"/DANGEROUS_{}_DANGEROUS || true
${PUMOUNT} ${SRC}
${PMOUNT} -r ${partition} ${SRC}
if [ ${?} -ne 0 ]; then
echo "Unable to mount ${partition} on /media/${SRC}"
2013-01-16 16:34:06 +01:00
else
echo "${partition} mounted at /media/${SRC}"
2013-02-08 18:07:26 +01:00
# Print the filenames on the current partition in a logfile
find "/media/${SRC}" -fls "${LOGS}/Content_partition_${PARTCOUNT}.txt"
# create a directory on ${DST} named PARTION_$PARTCOUNT
target_dir="/media/${DST}/FROM_PARTITION_${PARTCOUNT}"
echo "copying to: ${target_dir}"
mkdir -p "${target_dir}"
LOGFILE="${LOGS}/processing.txt"
2015-10-09 21:18:33 +02:00
echo "==== Starting processing of /media/${SRC} to ${target_dir}. ====" 1>&2
echo "==== Starting processing of /media/${SRC} to ${target_dir}. ====" >> ${LOGFILE}
2015-05-26 19:06:02 +02:00
generic.py --source /media/${SRC} --destination ${target_dir} || true
2015-10-09 21:18:33 +02:00
echo "==== Done with /media/${SRC} to ${target_dir}. ====" 1>&2
echo "==== Done with /media/${SRC} to ${target_dir}. ====" >> ${LOGFILE}
ls -lR "${target_dir}"
2013-01-16 16:34:06 +01:00
fi
let PARTCOUNT=`expr $PARTCOUNT + 1`
2013-01-16 16:34:06 +01:00
done
2015-10-09 21:18:33 +02:00
# To make debugging easier
echo "KittenGroomer: done with groomer.sh" 1>&2
# The cleanup is automatically done in the function clean called when
2013-02-08 18:07:26 +01:00
# the program quits