search for: do_account

Displaying 2 results from an estimated 2 matches for "do_account".

Did you mean: _account
2004 Jul 01
0
filesystem is full ??
...ackup-dir=$ARCHIVEROOT/$INCREMENTDIR -av" export PATH=$PATH:/bin:/usr/bin:/usr/local/bin # make sure our backup tree exists install -d $ARCHIVEROOT/$CURRENT # our actual rsyncing function do_rsync() { rsync $OPTIONS $BACKUPDIR $ARCHIVEROOT/$CURRENT } # our post rsync accounting function do_accounting() { echo "Backup Accounting for Day $INCREMENTDIR on $HOSTNAME:">/tmp/rsync_script_tmpfile echo >> /tmp/rsync_script_tmpfile echo "################################################">>/tmp/rsync_script_tmpfile du -s $ARCHIVEROOT/* >> /tmp/rsync...
2003 Sep 22
9
[Bug 702] dont call userauth_finish after auth2_challenge_stop
...h_info_response() is the culprit. auth2_challenge_stop() will eventually cause sshpam_free_ctx() to be called in auth-pam.c, which will free ctxt. This contains important file descriptors for the conversation function, which get closed before the free (which is correct). userauth_finish() can call do_account() if PAM is enabled. As auth2_challenge_stop() is getting called beforehand, if the module generates messages invalid references for FD's are found (probably because the memory has been malloc'ed again no SEGV) and the error detailed above is activated. It seems that it is possible to call...