Configuring wapt-get.ini for multiple repositories

Share your tips or issues concerning the WAPT Console or WAPT Agent here
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

March 25, 2018 - 11:37

Hello,

I just updated my server to version 1.5.1.21, along with the eight remote site repositories. Everything went smoothly. Syncthing is working. From the main site, I created the agent, which replicated and deployed correctly via GPO to the client machines. I'd like to take this opportunity to congratulate you on version 1.5.

As a result, in my console at the main site, I have all the machines from the eight sites; it's fantastic and works perfectly.
My machines at the eight remote sites are configured with the main site's repository, not the local one. The repository can be changed via the wapt-get.ini file on the machines using "repo_url=".

My question is:
Is it possible to have a "repo_url=" with the local address and a "wapt_server=" with the main site's address in the ini file? The goal is to manage the machines at the eight sites from the main site's console.

Thank you.
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
User avatar
dcardon
WAPT Expert
Messages: 1931
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

March 25, 2018 - 7:22 PM

btravers wrote: March 25, 2018 - 11:37 AM Hello,

I just updated my server to 1.5.1.21 along with the 8 remote site repositories. Everything went smoothly. Syncthing is working. From the main site, I created the agent, which replicated and deployed correctly via GPO to the client machines. I'd like to take this opportunity to congratulate you on version 1.5.

So, in my console at the main site, I have all the machines from the 8 sites; it's great and works well.
My machines at the 8 remote sites are configured with the main site's repository, not the local one. The repository can be changed via the wapt-get.ini file on the machines with "repo_url=".

My question:
Is it possible to have a "repo_url=" with the local address and a "wapt_server=" with the main site's address in the ini file? The goal is to manage the workstations across all 8 sites from the main site's console.

Thank you.
Absolutely, the two parameters `wapt_server` and `repo_url` don't have to point to the same address. To set up remote repositories, you simply need to install Apache or Nginx and configure replication (using rsync, syncthing, etc.).

One side effect, however, is that when an update is applied directly to a machine from the console, the "machine" package may not yet be replicated to the remote site. We're considering adding a third parameter to tell the WAPT agent to point to the waptserver rather than the repo_url for machine packages.

To anticipate the next question, you can take a look at the following packages to modify the configuration of your machines on remote sites. These packages do not include a service restart after the configuration changes are applied. Therefore, they will take effect at the next startup
* https://store.wapt.fr/package_details?p ... 4_all.wapt
* https://store.wapt.fr/package_details?p ... 6_all.wapt

Sincerely,

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
User avatar
htouvet
WAPT Expert
Messages: 436
Registration: March 16, 2015 - 10:48
Contact :

March 25, 2018 - 8:41 PM

For machine packages, the parameter already exists, you just need to define a repository named 'wapt-host' whose URL repo_url is that of the main server / main repository.

https://github.com/tranquilit/WAPT/blob ... n.py#L2653

If a [wapt-host] section exists in the wapt-get.ini file, it is used for configuring the machine package repository instead of simply adding '-host' to the end of the main package repository URL.

https://github.com/tranquilit/WAPT/blob ... n.py#L2670

->

Code: Select all

[global]
repo_url=https://site1.mondomaine.lan/wapt
waptserver=https://mainrepo.mondomaine.lan

[wapt-host]
repo_url=https://mainrepo.mondomaine.lan/wapt-host

Tranquil IT
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

March 25, 2018 - 10:57 PM

Okay, great, so if I make my little package like below, that's good? I don't understand what `waptwua_enabled a true` does.

Thank you for your quick response.


def install():

inifile_writestring(WAPT.config_filename,'global','repo_url',https://site1.mydomain.lan/wapt')
inifile_writestring(WAPT.config_filename,'global','wapt_server','https://mainrepo.mydomain.lan')
inifile_writestring(WAPT.config_filename,'wapt-host','repo_url','https://mainrepo.mydomain.lan/wapt-host')

inifile_writestring(WAPT.config_filename,'global','waptwua_enabled','true')


print('Modify max_gpo_script_wait')
inifile_writestring(WAPT.config_filename,'global','max_gpo_script_wait',180)

print('Modify Preshutdowntimeout')
inifile_writestring(WAPT.config_filename,'global','pre_shutdown_timeout',180)

print('Disable Hyberboot')
inifile_writestring(WAPT.config_filename,'global','hiberboot_enabled',0)

print('Disable Notify User')
inifile_writestring(WAPT.config_filename,'global','notify_user',0)
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
User avatar
dcardon
WAPT Expert
Messages: 1931
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

March 26, 2018 - 7:37 PM

Hello btravers,
btravers wrote: March 25, 2018 - 10:57 PM Okay great, so if I make my little package like below, it's good? I don't understand what `waptwua_enabled a true` is for.
This is to enable support for Windows updates through the WAPT agent, basically a WSUS integrated into WAPT; it's a feature we're preparing for the WAPT Enterprise version.

Sincerely,

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

March 26, 2018 - 10:44 PM

Hello,
I suspected as much, but I wasn't certain. I think this feature will lead me to upgrade to the enterprise version.

Thank you.
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
Patrice69
Messages: 6
Registration: March 22, 2018 - 7:22 PM

April 5, 2018 - 10:08 PM

Hello,

I updated my server to version 1.5.1.21 along with my three remote site repositories. Synchronization via Rsync works.
Everything seems to be working correctly except for the remote repositories.

The agent was deployed to all machines via a login script.

I then manually modified some remote site machines to use the local site repository configuration instead of the main site repository, based on the

wapt-get.ini file: adapting it to the local context:
[global]
repo_url=https://site1.mydomain.lan/wapt
waptserver=https://mainrepo.mydomain.lan

[wapt-host]
repo_url=https://mainrepo.mydomain.lan/wapt-host

When I assign a package to a remote machine via the console, it considers its configuration to be up-to-date. The same happens when I force a manual synchronization of the repositories, and also when I restart the remote machine.

What step do you think I missed?

Thank you in advance for your ideas...

Best regards,
User avatar
vcardon
WAPT Expert
Messages: 278
Registration: Oct 06, 2017 - 10:55 p.m.
Location: Nantes, France

April 5, 2018 - 10:37 PM

btravers wrote: March 26, 2018 - 10:44 PM Hello,
I suspected as much, but wasn't certain. I think this feature will make me upgrade to the enterprise version.

Thank you.
And there will be plenty of other things in the Enterprise version:

- Simplified management of remote repositories => under development
- Simplified multi-repository management => under development
- Strong integration with Active Directory (MS or Samba) => this already exists
- Management reporting => under development
- Simplified management of role separation => this already exists

1.5 is a very beautiful princess, already perfectly refined, of noble lineage, cultured, and of great dignity. She just needs a quick visit to the hairdresser and tailor, and she'll be 100% ready to reach out to her most demanding princes for their first waltzes ;)

A++

Vincent
Vincent CARDON
Tranquil IT
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

April 8, 2018 - 9:53 PM

Hello,

do you have a public roadmap? The resumption of WSUS functionality and the connection with GLPI are two things we're eagerly awaiting. If you had a date, it would help me plan accordingly.

Thank you
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
Locked