Jump to content

Persistent Group support


BRiT

Recommended Posts

Similar to how the /etc/passwd file is persisted between reboots, it would be nice to have the same functionality apply to /etc/group.

 

I'm trying to setup a custom group to be used by a subset of custom users, and that is working fine ... until the server is rebooted and the /etc/group file is back to the initial state.

 

Link to comment
  • 1 year later...

Here is a work around that I am using on 6.2 Beta21.

 

1.  Create your custom group file and place it in /boot/config

2.  Modify the /boot/config/go script

    #!/bin/bash

    # Start the Management Utility

 

    cp /boot/config/group /etc/group        <---Add

    chmod 644 /etc/group                        <---Add

 

    /usr/local/sbin/emhttp &

 

 

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...