Hello,
I imagine this isn't necessarily intended for this, but I wanted to try calling a web page to force a FusionInventory update via the installation script by calling the local web server (127.0.0.1:62354/now). In theory, this works with the correct module, but I noticed that the module isn't part of WAPT at build time.
Are there only those listed at this address: https://github.com/tranquilit/WAPT ?
If so, is it possible to add more?
Thanks in advance for your replies.
[Resolved] Package development
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
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
You probably already have what you need in the standard Python that comes with Wapt.
This should work:
This should work:
Code: Select all
from setuphelpers import *
def install():
# faire ce qu'il faut
# lancer l'inventaire Fusion Inventory...
print(wgets('http://127.0.0.1:62354/now',proxies = {'http':None}))
Tranquil IT
Oh yeah, thanks. I didn't think you could use wget like that in Python. I'll look at the documentation a bit more, but I thought I'd absolutely need a module.
So I guess that's right, we're limited to the built-in modules?
Edit: After checking, I can't find wgets in the Python documentation. I'm used to the PHP documentation, but I'm a bit lost here. I can't even find which library it comes from via Google, nor by looking in the Git libraries. Can you point me in the right direction?
So I guess that's right, we're limited to the built-in modules?
Edit: After checking, I can't find wgets in the Python documentation. I'm used to the PHP documentation, but I'm a bit lost here. I can't even find which library it comes from via Google, nor by looking in the Git libraries. Can you point me in the right direction?
In standard Python, you can use urllib2, which allows you to make HTTP requests.
You can also use the requests module (which is integrated into Wapt).
In Wapt's "setuphelpers" module, a number of functions used during installation are defined or grouped.
`wget` and `wgets` are two functions defined in setuphelpers that act as wrappers on top of the requests module.
You can find documentation on setuphelpers here: https://dev.tranquil.it/sphinxdocs/sour ... lpers.wget.
You can add modules external to Wapt to your package; they will be available during the installation phase, but not during the uninstallation phase, unless you copy them to a persistent location during package installation.
You can also use the requests module (which is integrated into Wapt).
In Wapt's "setuphelpers" module, a number of functions used during installation are defined or grouped.
`wget` and `wgets` are two functions defined in setuphelpers that act as wrappers on top of the requests module.
You can find documentation on setuphelpers here: https://dev.tranquil.it/sphinxdocs/sour ... lpers.wget.
You can add modules external to Wapt to your package; they will be available during the installation phase, but not during the uninstallation phase, unless you copy them to a persistent location during package installation.
Tranquil IT
