Rebuilt targets for v1.2-beta

pull/70/head
deajan 8 years ago
parent e552a2d9bc
commit 31ba152069

@ -7,7 +7,8 @@ KNOWN ISSUES
RECENT CHANGES
--------------
- Some more code compliance
- Added a PKGBUILD file for ArchLinux thanks to Shadowigor (https://github.com/shaodwigor). Builds available at https://aur.archlinux.org/packages/osync/
- Some more code compliance & more paranoia checks
- Added more preflight checks
- Logs sent by mail are easier to read
- Better subject (currently running or finished run)
@ -35,6 +36,9 @@ RECENT CHANGES
- Added KillAllChilds function to accept multiple pids
- Improved logging
XX xxx 2016: osync v1.1.3 released
- Fixed installer for CYGWIN / MSYS environment
28 Aug 2016: osync v1.1.2 released
- Renamed sync.conf to sync.conf.example (thanks to https://github.com/hortimech)
- Fixed RunAfterHook may be executed twice

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
#!/usr/bin/env bash
PROGRAM=osync
PROGRAM_VERSION=1.2-dev-parallel
PROGRAM_VERSION=1.2-beta
PROGRAM_BINARY=$PROGRAM".sh"
PROGRAM_BATCH=$PROGRAM"-batch.sh"
SCRIPT_BUILD=2016082901

@ -3,7 +3,7 @@ SUBPROGRAM=osync
PROGRAM="$SUBPROGRAM-batch" # Batch program to run osync / obackup instances sequentially and rerun failed ones
AUTHOR="(L) 2013-2016 by Orsiris de Jong"
CONTACT="http://www.netpower.fr - ozy@netpower.fr"
PROGRAM_BUILD=2016081704
PROGRAM_BUILD=2016082901
## Runs an osync /obackup instance for every conf file found
## If an instance fails, run it again if time permits
@ -68,7 +68,7 @@ function CheckEnvironment {
then
SUBPROGRAM_EXECUTABLE=/usr/local/bin/$SUBPROGRAM.sh
else
Logger "Could not find $SUBPROGRAM.sh" "CRITICAL"
Logger "Could not find [/usr/local/bin/$SUBPROGRAM.sh]" "CRITICAL"
exit 1
fi
else

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save