summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorst33v <github@f3rr3t.com>2016-12-29 15:04:33 +1100
committerst33v <github@f3rr3t.com>2016-12-29 15:04:33 +1100
commit6610463f97524004fc56736c1c7791013293322d (patch)
tree01666643ae4b69b8c8726014c39d50cf3b32b364
parent98cc377d642fdf5dbba042ae793c8659d5ac875d (diff)
merged sendpix.sh into getpix.sh
-rwxr-xr-xgetpix.sh7
-rwxr-xr-xsendpix.sh19
2 files changed, 5 insertions, 21 deletions
diff --git a/getpix.sh b/getpix.sh
index 43520ca..743540d 100755
--- a/getpix.sh
+++ b/getpix.sh
@@ -5,6 +5,7 @@
########### Constants ##################
campi="neatherd" # hard-code source hostname for the moment
+wanWebServer="f3rr3t.com"
sourcedir="/home/st33v/pix" # where the image is on the source computer (i.e. $campi)
thisdir="/home/st33v/cams" # this directory (on this computer)
threshold="2000" # minimum value of average pixel brightness. Tests if pic is too dark
@@ -53,7 +54,9 @@ fi
convert ${newpic} -unsharp 1.5x1+0.7+0.02 temp.jpg
convert temp.jpg -resize 33% -quality 70 ${newpic}
rm temp.jpg
-
-. ~/cams/sendpix.sh
+
+scp /home/st33v/cams/$campi/$newpic $wanWebServer:/home/st33v/farm/cam/$campi/.
+
+#. ~/cams/sendpix.sh
#exit(0) # force success exit code for fussy systemd
diff --git a/sendpix.sh b/sendpix.sh
deleted file mode 100755
index e597d6f..0000000
--- a/sendpix.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/bash
-# SJP 22 Feb 2016
-#
-# Send (copy) webcam pix from master repository (on the LAN) to remote computer with web server.
-# This script is to be called from a systemd timer.
-
-# The name of the system that has the webcamn attached.
-# While this is presently hard-coded, we can abstract this for laster iterations when there are more than one cam.
-campi="neatherd"
-# remote server
-wanWebServer="f3rr3t.com"
-
-# select the most recent pic
-newpic=$(ls -t ~/cams/$campi/ | head -1 )
-
-scp /home/st33v/cams/$campi/$newpic $wanWebServer:/home/st33v/farm/cam/$campi/.
-
-
-#exit(0) # force succes exit code for fussy systemd