summaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands.c b/src/commands.c
index 18d94aa..db26130 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -211,6 +211,7 @@ int com_ping( char *arg )
int com_useradd( char *arg )
{
+ /* temporary STUB. Should use busctl or REST */
if( !valid_argument( "useradd", arg ) )
return( 1 );
@@ -220,6 +221,7 @@ int com_useradd( char *arg )
int com_userdel( char *arg )
{
+ /* temporary STUB. Should use busctl or REST */
if( !valid_argument( "userdel", arg ) )
return( 1 );
@@ -229,6 +231,7 @@ int com_userdel( char *arg )
int com_userlist( char *arg )
{
+ /* temporary STUB. Should use busctl or REST */
if( !arg ) arg = "";
sprintf (syscom, "cat /etc/passwd | cut -f1 -d':' %s", arg);