--- freem/src/fmadm.c 2025/04/01 20:11:46 1.21
+++ freem/src/fmadm.c 2025/04/02 03:02:42 1.24
@@ -1,5 +1,5 @@
/*
- * $Id: fmadm.c,v 1.21 2025/04/01 20:11:46 snw Exp $
+ * $Id: fmadm.c,v 1.24 2025/04/02 03:02:42 snw Exp $
* FreeM Administration Tool
*
*
@@ -24,6 +24,15 @@
* along with FreeM. If not, see .
*
* $Log: fmadm.c,v $
+ * Revision 1.24 2025/04/02 03:02:42 snw
+ * Stop requiring users to pass -e to fmadm when -u or -g are passed
+ *
+ * Revision 1.23 2025/04/02 02:16:27 snw
+ * Add fmadm status environment command and move journals to a better location
+ *
+ * Revision 1.22 2025/04/01 23:21:45 snw
+ * fmadm commands for stopping, starting, and restarting environments now functional
+ *
* Revision 1.21 2025/04/01 20:11:46 snw
* Further work on fmadm
*
@@ -224,7 +233,6 @@ int main (int argc, char **argv)
env_user[k++] = argv[i][j];
}
- fma_explicit_environment = TRUE;
base_arg++;
break;
@@ -242,7 +250,6 @@ int main (int argc, char **argv)
env_group[k++] = argv[i][j];
}
- fma_explicit_environment = TRUE;
base_arg++;
break;
@@ -292,7 +299,7 @@ int main (int argc, char **argv)
}
}
}
-
+
if (obj != OBJ_DAEMON) {
if (strlen (env_user) == 0) {
snprintf (env_user, 6, "freem");
@@ -340,7 +347,13 @@ int main (int argc, char **argv)
act = ACT_RESTART;
obj = OBJ_DAEMON;
goto act_switch;
+ }
+ else if (strcmp (argv[1], "status") == 0 && strcmp (argv[2], "environment") == 0) {
+ act = ACT_STATUS;
+ obj = OBJ_DAEMON;
+ goto act_switch;
}
+
}
pid = getpid ();
@@ -407,7 +420,6 @@ int main (int argc, char **argv)
else return fmadm_usage();
if (strncmp (obj_str, "lock", STRLEN - 1) == 0) obj = OBJ_LOCK;
- else if (strncmp (obj_str, "zallocate", STRLEN - 1) == 0) obj = OBJ_ZALLOC;
else if (strncmp (obj_str, "journal", STRLEN - 1) == 0) obj = OBJ_JOURNAL;
else if (strncmp (obj_str, "namespace", STRLEN - 1) == 0) obj = OBJ_NAMESPACE;
else if (strncmp (obj_str, "global", STRLEN - 1) == 0) obj = OBJ_GLOBAL;
@@ -511,6 +523,7 @@ act_switch:
case ACT_START:
case ACT_STOP:
case ACT_RESTART:
+ case ACT_STATUS:
fmadm_exit (fm_daemonctl (act, obj, optc, opts));
default:
@@ -664,7 +677,6 @@ int fm_shell (void)
strcpy (obj_str, args[0]);
if (strncmp (obj_str, "lock", STRLEN - 1) == 0) obj = OBJ_LOCK;
- else if (strncmp (obj_str, "zallocate", STRLEN - 1) == 0) obj = OBJ_ZALLOC;
else if (strncmp (obj_str, "journal", STRLEN - 1) == 0) obj = OBJ_JOURNAL;
else if (strncmp (obj_str, "namespace", STRLEN - 1) == 0) obj = OBJ_NAMESPACE;
else if (strncmp (obj_str, "global", STRLEN - 1) == 0) obj = OBJ_GLOBAL;
@@ -868,7 +880,7 @@ int fmadm_usage (void)
fprintf (stdout, " stop, restart\n\n");
fprintf (stdout, "