55ed4f1 In IPA 4.4 when updating userpassword with ldapmodify does not update krbPasswordExpiration nor krbLastPwdChange

1 file Authored by tbordaz 5 years ago, Committed by frenaud 5 years ago,
    In IPA 4.4 when updating userpassword with ldapmodify does not update krbPasswordExpiration nor krbLastPwdChange
    
    When making ipa-pwd-extop TXN aware, some callbacks are call twice.
    Particularily
    	ipapwd_pre_add is called during PRE_ADD and TXN_PRE_ADD
    	ipapwd_pre_mod is called during PRE_MOD and TXN_PRE_MOD
    	ipapwd_post_modadd is called during POST_ADD and TXN_POST_ADD
    	ipapwd_post_modadd is called during POST_MOD and TXN_POST_MOD
    It is not the expected behavior and it results on some skipped updates krbPasswordExpiration
    and krbLastPwdChange
    
    https://pagure.io/freeipa/issue/7601
    
    Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>