From 8c63dad2f349b22ecdf69e2b3b246fd3daa7a076 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Tue, 4 Mar 2025 09:45:05 +0100 Subject: [PATCH] xmlrpc: stop pushing nextuid and nextgid as these don't exist anymore. --- src/etc/rc.filter_synchronize | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/etc/rc.filter_synchronize b/src/etc/rc.filter_synchronize index cf0046776..3521c5700 100755 --- a/src/etc/rc.filter_synchronize +++ b/src/etc/rc.filter_synchronize @@ -233,15 +233,6 @@ function carp_sync_xml($url, $username, $password, $sections, $debug) } } - // when syncing users, send last used uid/gid over - if (in_array('system.user', $sections)) { - if (!isset($transport_data['system'])) { - $transport_data['system'] = array(); - } - $transport_data['system']['nextuid'] = $config['system']['nextuid']; - $transport_data['system']['nextgid'] = $config['system']['nextgid']; - } - $client = new SimpleXMLRPC_Client($url,240); $client->debug = $debug; $client->setCredentials($username, $password);