Update call to `rpc-sys packagelist` to list all packages, not just
top-level packages, so that we can actually check if python3-libpass
and python3-bcrypt are installed.
Without this bcrypt authentication will not be made available to the
user.
Signed-off-by: Daniel F. Dickinson <redacted>
const callPackageList = rpc.declare({
object: 'rpc-sys',
method: 'packagelist',
- params: [],
+ params: ['all'],
expect: {},
});
load() {
return Promise.all([
L.resolveDefault(callServiceList('radicale3')),
- L.resolveDefault(callPackageList()),
+ L.resolveDefault(callPackageList(true)),
uci.load('radicale3'),
]);
},