From: Pavel Filipenský Date: Tue, 20 Aug 2024 15:15:46 +0000 (+0200) Subject: lib/param: Don't treat a missing include file as an error in handle_include(). X-Git-Tag: tdb-1.4.13~1327 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ffc75c569c69ce22a39b5d1df8cb4906095c8654;p=thirdparty%2Fsamba.git lib/param: Don't treat a missing include file as an error in handle_include(). Same fix as in commit 09d7690 'samba-tool domain provision -d10' fails if the included file does not exist: lpcfg_load: refreshing parameters from /etc/samba/smb.conf Processing section "[global]" Can't find include file /etc/samba/usershares.conf pm_process() returned No ERROR: Unable to load default file File "/usr/lib64/python3.12/site-packages/samba/netcmd/domain/provision.py", line 183, in run lp = sambaopts.get_loadparm() ^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib64/python3.12/site-packages/samba/getopt.py", line 282, in get_loadparm self._lp.load_default() Signed-off-by: Pavel Filipenský Reviewed-by: Martin Schwenke Autobuild-User(master): Martin Schwenke Autobuild-Date(master): Wed Aug 21 00:04:19 UTC 2024 on atb-devel-224 --- diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 0afdcebb02d..ed5160d547b 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -1132,7 +1132,7 @@ bool handle_include(struct loadparm_context *lp_ctx, struct loadparm_service *se DEBUG(2, ("Can't find include file %s\n", fname)); - return false; + return true; } /***************************************************************************