1
0
mirror of https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks.git synced 2025-09-09 15:40:45 +02:00

Update detectionOn.sh (#1303)

It fix access right problem when you use NFS mount for save.
This commit is contained in:
Dmytro Drozdov
2020-03-04 11:27:28 +02:00
committed by GitHub
parent d9336ab637
commit 74256f7563

View File

@@ -81,6 +81,7 @@ if [ "$save_snapshot" = true ] ; then
if [ ! -d "$save_snapshot_dir/$groupname" ]; then
mkdir -p "$save_snapshot_dir/$groupname"
chmod "$save_snapshot_attr" "$save_snapshot_dir/$groupname"
fi
# Limit the number of snapshots
@@ -89,7 +90,7 @@ if [ "$save_snapshot" = true ] ; then
fi
chmod "$save_snapshot_attr" "$snapshot_tempfile"
cp -p "$snapshot_tempfile" "$save_snapshot_dir/$groupname/$filename.jpg"
cp "$snapshot_tempfile" "$save_snapshot_dir/$groupname/$filename.jpg"
) &
fi
@@ -100,6 +101,7 @@ if [ "$save_video" = true ] ; then
if [ ! -d "$save_video_dir/$groupname" ]; then
mkdir -p "$save_video_dir/$groupname"
chmod "$save_snapshot_attr" "$save_video_dir/$groupname"
fi
# Limit the number of videos
@@ -108,7 +110,7 @@ if [ "$save_video" = true ] ; then
fi
chmod "$save_video_attr" "$video_tempfile"
cp -p "$video_tempfile" "$save_video_dir/$groupname/$filename.mp4"
cp "$video_tempfile" "$save_video_dir/$groupname/$filename.mp4"
) &
fi