3 Commits

Author SHA1 Message Date
lejubila
9cb7d6ce9d Variato numero di versione 2017-06-17 15:31:11 +02:00
lejubila
ce062f30ca Rimosso lock/unlock nella funzione init per risolvere problema di inizializzazione 2017-06-17 15:23:09 +02:00
lejubila
164169e375 corretto path di sed nella funzione lock 2017-06-17 12:40:40 +02:00
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
## 0.4.4 - 17/06/2017
Remove lock/unlock from init function for resove bug
## 0.4.3 - 17/06/2017
Fix path of sed in lock function
## 0.4.2 - 16/06/2017 ## 0.4.2 - 16/06/2017
Fix another problem on generate installation identifier to sendo for statistic Fix another problem on generate installation identifier to sendo for statistic

View File

@@ -10,7 +10,7 @@
# #
function initialize { function initialize {
lock #lock
log_write "Run initialize" log_write "Run initialize"
@@ -52,7 +52,7 @@ function initialize {
log_write "End initialize" log_write "End initialize"
unlock #unlock
} }
@@ -1418,7 +1418,7 @@ list_descendants ()
# #
function lock { function lock {
sleep 0.$((100 * $RANDOM / 32767)) | sed 's/..$/.&/' sleep 0.$((100 * $RANDOM / 32767)) | $SED 's/..$/.&/'
local max_time=10 local max_time=10
local current_time=$(($1 + 1)) local current_time=$(($1 + 1))
@@ -1496,7 +1496,7 @@ function debug2 {
VERSION=0 VERSION=0
SUB_VERSION=4 SUB_VERSION=4
RELEASE_VERSION=2 RELEASE_VERSION=4
DIR_SCRIPT=`dirname $0` DIR_SCRIPT=`dirname $0`
NAME_SCRIPT=${0##*/} NAME_SCRIPT=${0##*/}