im still learning confd, and i wonder is it possible to add user without using cli?
the first thought that come to my mind is to edit : /etc/confd/cdb/config_init.xml
<aaa xmlns="http://tail-f.com/ns/aaa/1.1">
<authentication>
<users>
<user>
<name>test</name>
<uid>1000</uid>
<gid>1000</gid>
<password>$1$5Q5b/7cc$xyslIcrVzIq0Jc75RfDRt0</password>
<ssh_keydir>/dev/null</ssh_keydir>
<homedir>/dev/null</homedir>
</user>
</users>
</authentication>
<ios>
so if i add in the /config_init.xml same info as above but with diffrent login, will it work? or can it be done?
<aaa xmlns="http://tail-f.com/ns/aaa/1.1">
<authentication>
<users>
<user>
<name>test</name>
<uid>1000</uid>
<gid>1000</gid>
<password>$1$5Q5b/7cc$xyslIcrVzIq0Jc75RfDRt0</password>
<ssh_keydir>/dev/null</ssh_keydir>
<homedir>/dev/null</homedir>
</user>
<user>
<name>test2</name>
<uid>1000</uid>
<gid>1000</gid>
<password>$1$5Q5b/7cc$xyslIcrVzIq0Jc75RfDRt0</password>
<ssh_keydir>/dev/null</ssh_keydir>
<homedir>/dev/null</homedir>
</user>
</users>
</authentication>
<ios>