:: Re: [DNG] simple-netaid for daedalu…
Top Page
Delete this message
Reply to this message
Author: aitor
Date:  
To: dng
Subject: Re: [DNG] simple-netaid for daedalus
Hi,

On 21/8/23 11:52, al3xu5 via Dng wrote:

>> After that, don't forget to configure your /etc/network/interfaces. You
>> also will need to add yourself to the snetaid group:
>>
>> # usermod -aG <username>
>>
>> in order to connect to the ubus.
> Thanks aitor.
>
> I have tried right now, just after upgraded my system to daedalus...
>
> A problem here. Cannot add myself to the `snetaid` group: the group not exist
> in the system.
>
> Could you help me, please? What should I do?


Sorry for the mistake.

The name of the group is "netaid", and it's created by the postinstall script of snetaid:

case "$1" in
    configure)

        ( .... )

        if ! getent group netaid > /dev/null; then
            addgroup --quiet --system netaid || true
        fi


In my replay above, I also forgot the name of the group in the command that adds yourself to the group:

# usermod -aG netaid <username>

Cheers,

Aitor.