index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-04-06 11:04:18 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-08-04 14:23:58 +1000 |
commit | 574e45df28769b4919c0c7e5c7cb10d521066adc (patch) | |
tree | 9484606b13cb144e7c33fe85570ba78e94a458bb /lib | |
parent | 7c75564af933ad5258b2e2bee6ce63b9bcbf6561 (diff) |
-rw-r--r-- | lib/libalpm/trans.c | 10 |
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index 68f6633d..4a176086 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -177,18 +177,28 @@ int SYMEXPORT alpm_trans_commit(alpm_handle_t *handle, alpm_list_t **data) trans->state = STATE_COMMITING; + alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction started\n"); + if(trans->add == NULL) { if(_alpm_remove_packages(handle, 1) == -1) { /* pm_errno is set by _alpm_remove_packages() */ + alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction failed\n"); return -1; } } else { if(_alpm_sync_commit(handle, data) == -1) { /* pm_errno is set by _alpm_sync_commit() */ + alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction failed\n"); return -1; } } + if(trans->state == STATE_INTERRUPTED) { + alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction interrupted\n"); + } else { + alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction completed\n"); + } + trans->state = STATE_COMMITED; return 0; |