The search returned 38 results

by bastien30
January 16, 2026 - 6:12 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] RPM waptagent fails to install on Fedora 43
Answers: 6
Views : 17792

Re: RPM waptagent won't install on Fedora 43

Good evening,

So there's only one affected machine and it installed the package manually using the command I posted above, so there's no rush, we'll see at the next agent update. :roll:

Thank you and have a good weekend too!
by bastien30
January 16, 2026 - 2:09 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] RPM waptagent fails to install on Fedora 43
Answers: 6
Views : 17792

[SOLVED] RPM waptagent fails to install on Fedora 43

Hello,

the RPM package waptagent fails to install on a Fedora 43 machine.

The RPM package does not contain a signature:
# rpm -qi tis-waptagent-2.6.1.17576-407e255f.x86_64.rpm
Name: tis-waptagent
Version: 2.6.1.17576
Release: 407e255f
Architecture: x86_64
Install Date: (not installed)
Group ...
by bastien30
January 8, 2026 - 10:16 PM
Forum: WAPT Packages
Subject: [SOLVED] Package to configure a Wi-Fi network on Windows, Linux, and macOS
Answers: 3
Views : 8444

Re: [SOLVED] Package to configure a Wi-Fi network on Windows, Linux, and macOS

Hi Vincent,

To be honest, my package does integrate this mechanism, but I'm basing it on an older version that I've slightly modified.
While functional, it's certainly less optimized than the latest version on the store.
I use it in other packages that I...
by bastien30
January 7, 2026 - 1:09 PM
Forum: WAPT Packages
Subject: [SOLVED] Package to configure a Wi-Fi network on Windows, Linux, and macOS
Answers: 3
Views : 8444

[SOLVED] Package to configure a Wi-Fi network on Windows, Linux, and macOS

Hello,

Here's a package for configuring a Wi-Fi network on Windows (with netsh), Linux (with nmcli), and macOS (with networksetup).

It could be greatly improved, but as it is, it works on my network :-)

setup.py:

# -*- coding: utf-8 -*-
from setuphelpers import *
import ...
by bastien30
January 7, 2026 - 12:56
Forum: WAPT Packages
Subject: [RESOLVED] Local administrator audit packages for Linux and macOS
Answers: 1
Views : 4903

[RESOLVED] Local administrator audit packages for Linux and macOS

Hello,

Here are some packages for auditing local administrators under Linux and macOS.

Linux:

# -*- coding: utf-8 -*-
from setuphelpers import *

# Define allowed users in admin group
allowed_admins_list = [
r'my-admin-user',
r'my-other-admin-user',
]

def install():
pass

def audit():
if ...
by bastien30
January 7, 2026 - 12:50
Forum: WAPT Packages
Subject: [RESOLVED] Audit packages for LUKS and FileVault
Answers: 0
Views : 5625

[RESOLVED] Audit packages for LUKS and FileVault

Hello,

Here are some packages to audit the encryption of Linux machines with LUKS and macOS machines with FileVault.

LUKS:

# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
pass

def audit():
audit_result = "OK"

# Check existing LUKS partitions
luks_partitions = run(r ...
by bastien30
November 20, 2025 - 12:30
Forum: WAPT Packages
Subject: [SOLVED] Package for Eraser (Windows)
Answers: 1
Views : 5638

[SOLVED] Package for Eraser (Windows)

Hello,

I've created a package for the Eraser software on Windows, with a working update_package() function.

setup.py:

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *

def install():
appver = control.version.split('-',1)[0]
install_msi_if_needed(r'Eraser_%s.msi ...
by bastien30
November 20, 2025 - 12:26
Forum: WAPT Packages
Subject: [SOLVED] Packages for Logi Options+ (Windows / MacOS)
Answers: 1
Views : 8414

[SOLVED] Packages for Logi Options+ (Windows / MacOS)

Hello,

I've created a package for the Logi Options+ software on Windows and macOS, with a working update_package() function.

Windows

setup.py:

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *

installer = r'logioptionsplus_%s.exe'

def install():
appver = control ...
by bastien30
September 4, 2025 - 12:00
Forum: WAPT Packages
Subject: [SOLVED] Package for ChatGPT (MacOS)
Answers: 0
Views : 28404

[SOLVED] Package for ChatGPT (MacOS)

Hello,

I've created a package for the ChatGPT desktop client for macOS, with a working update_package() function.

Note: according to their website, the DMG is only compatible with ARM processors.

For Windows, the application is available in the store, so you just need to use the dedicated template package...