Files
freeipa/ipaserver/install
Florence Blanc-Renaud 921f500240 ipa-backup: fix python2 issue with os.mkdir
Python2 and python3 have different interfaces for os.mkdir:
python2: os.mkdir(path[, mode])
python3: os.mkdir(path, mode=0o777, *, dir_fd=None)

ipa-backup is using the python3 format, which breaks deployments using
python2. The fix consists in using os.mkdir(path, 0o700) instead of
os.mkdir(path, mode=0o700).

Fixes: https://pagure.io/freeipa/issue/8099
Reviewed-By: Alexander Bokovoy <abbra@users.noreply.github.com>
2019-10-17 08:36:54 +02:00
..
2019-09-27 09:38:32 +02:00
2019-07-01 13:21:21 +02:00
2019-07-17 17:58:58 +03:00
2019-09-25 11:38:31 -04:00
2019-03-28 00:21:00 +01:00
2019-04-10 13:43:23 +02:00
2019-09-27 09:38:32 +02:00
2019-04-10 13:43:23 +02:00