search for: make_relative_path

Displaying 6 results from an estimated 6 matches for "make_relative_path".

2021 Oct 27
0
[Announce] Samba 4.15.1 Available for Download
Release Announcements --------------------- This is the latest stable release of the Samba 4.15 release series. Changes since 4.15.0 -------------------- o? Jeremy Allison <jra at samba.org> ?? * BUG 14682: vfs_shadow_copy2: core dump in make_relative_path. ?? * BUG 14685: Log clutter from filename_convert_internal. ?? * BUG 14862: MacOSX compilation fixes. o? Douglas Bagnall <douglas.bagnall at catalyst.net.nz> ?? * BUG 14868: rodc_rwdc test flaps. o? Andrew Bartlett <abartlet at samba.org> ?? * BUG 14642: Provide a fix for MS CVE-...
2021 Oct 27
0
[Announce] Samba 4.15.1 Available for Download
Release Announcements --------------------- This is the latest stable release of the Samba 4.15 release series. Changes since 4.15.0 -------------------- o? Jeremy Allison <jra at samba.org> ?? * BUG 14682: vfs_shadow_copy2: core dump in make_relative_path. ?? * BUG 14685: Log clutter from filename_convert_internal. ?? * BUG 14862: MacOSX compilation fixes. o? Douglas Bagnall <douglas.bagnall at catalyst.net.nz> ?? * BUG 14868: rodc_rwdc test flaps. o? Andrew Bartlett <abartlet at samba.org> ?? * BUG 14642: Provide a fix for MS CVE-...
2021 Oct 27
0
[Announce] Samba 4.14.9 Available for Download
Release Announcements --------------------- This is the latest stable release of the Samba 4.14 release series. Changes since 4.14.8 -------------------- o? Jeremy Allison <jra at samba.org> ?? * BUG 14682: vfs_shadow_copy2: core dump in make_relative_path. o? Douglas Bagnall <douglas.bagnall at catalyst.net.nz> ?? * BUG 14868: rodc_rwdc test flaps. ?? * BUG 14881: Backport bronze bit fixes, tests, and selftest improvements. o? Andrew Bartlett <abartlet at samba.org> ?? * BUG 14836: Python ldb.msg_diff() memory handling failure. ??...
2021 Oct 27
0
[Announce] Samba 4.14.9 Available for Download
Release Announcements --------------------- This is the latest stable release of the Samba 4.14 release series. Changes since 4.14.8 -------------------- o? Jeremy Allison <jra at samba.org> ?? * BUG 14682: vfs_shadow_copy2: core dump in make_relative_path. o? Douglas Bagnall <douglas.bagnall at catalyst.net.nz> ?? * BUG 14868: rodc_rwdc test flaps. ?? * BUG 14881: Backport bronze bit fixes, tests, and selftest improvements. o? Andrew Bartlett <abartlet at samba.org> ?? * BUG 14836: Python ldb.msg_diff() memory handling failure. ??...
2017 Jan 03
0
[PATCH 5/5] Add a virt-builder-repository tool
...9;/path/to/repo' to point to the repository folder.") + | _ -> + error (f_"too many parameters, at most one '/path/to/repo' is allowed") + ) in + + { + gpg = gpg; + gpgkey = gpgkey; + interactive = interactive; + repo = repo; + } + +let make_relative_path base absolute = + if Filename.is_relative absolute then + absolute + else + let expr = sprintf "^%s/\\(.+\\)$" (Str.quote base) in + if Str.string_match (Str.regexp expr) absolute 0 then + Str.matched_group 1 absolute + else + absolute + +let increment_revision rev...
2017 Jan 03
13
[PATCH 0/5] Introducing virt-builder-repository
Hi all, I wanted to provide an easy way to create or update a virt-builder repository out of a folder of template disk image files. This is what virt-builder-repository aims at. Some of the data are computed from the image file, others are asked the user or extracted from an existing index file. So far, virt-builder-repository doesn't run libguestfs on each image to extract the architecture,