[SOLVED] Installing the WAPT agent on Ubuntu WADS
Published: August 22, 2025 - 09:26
Good morning,
How can I install the WAPT agent during a WADS deployment to an Ubuntu machine? In my cloud-init configuration, I tried to install it via runcmd:
or:
Or I even tried creating a simple file using modules such as:
But that doesn't work either.
So, is it related to my indentation (I placed runcmd at the same level as autoinstall / writefiles indented inside autoinstall), the order of the script steps, WADS not being supported...?
Furthermore, the "Load a post-install script" function is greyed out when it comes to a non-Windows WADS deployment.
Thanks in advance,
Sincerely.
How can I install the WAPT agent during a WADS deployment to an Ubuntu machine? In my cloud-init configuration, I tried to install it via runcmd:
Code: Select all
runcmd:
- wget https://wapt.tranquil.it/release/wapt-2.6.0.17392-0ac7bf48/tis-waptagent-2.6.0.17392-0ac7bf48-amd64.deb -O /home/usertemp/test.deb
- dpkg -i /home/usertemp/test.debCode: Select all
runcmd:
- [curl -o /home/usertemp/fichier.deb https://wapt.tranquil.it/release/wapt-2.6.0.17392-0ac7bf48/tis-waptagent-2.6.0.17392-0ac7bf48-amd64.deb]
- [dpkg -i /home/usertemp/test.deb]Code: Select all
write_files:
- path: /home/usertemp/fichiertest
permissions: '0644'
owner: usertemp:usertemp
content: |
Contenu de mon fichierSo, is it related to my indentation (I placed runcmd at the same level as autoinstall / writefiles indented inside autoinstall), the order of the script steps, WADS not being supported...?
Furthermore, the "Load a post-install script" function is greyed out when it comes to a non-Windows WADS deployment.
Thanks in advance,
Sincerely.