summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c
index 3bf2e5a..529436c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -21,7 +21,7 @@
#include <shell.h>
#include <users.h>
#include <power_commands.h>
-#include <sd_bus.h>
+#include <d_bus.h>
char *progname; /* The name of this program, as taken from argv[0]. */
int done; /* When non-zero, this global means the user is done using this program. */
@@ -79,7 +79,6 @@ COMMAND shell_admin_list[] = {
{ "more", com_more, "View the contents of FILE" },
{ "vi", com_vi, "Edit the contents of text FILE" },
{ "poweroff", com_poweroff, "Turn off the BMC power" },
- { "get_string", cmd_get_string, "GetProperty" },
{ "..", com_top, "Return to top menu" },
{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};
@@ -98,7 +97,6 @@ COMMAND shell_operator_list[] = {
{ "stat", com_stat, "Print out statistics on FILE" },
{ "more", com_more, "View the contents of FILE" },
{ "vi", com_vi, "Edit the contents of text FILE" },
- { "get_string", cmd_get_string, "GetProperty" },
{ "..", com_top, "Return to top menu" },
{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};
@@ -117,7 +115,6 @@ COMMAND shell_user_list[] = {
{ "stat", com_stat, "Print out statistics on FILE" },
{ "more", com_more, "View the contents of FILE" },
{ "vi", com_vi, "Edit the contents of text FILE" },
- { "get_string", cmd_get_string, "GetProperty" },
{ "..", com_top, "Return to top menu" },
{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};
@@ -164,6 +161,7 @@ COMMAND server_admin_list[] = {
{ "help", com_help, "Display this text" },
{ "?", com_help, "Synonym for `help'" },
{ "power", com_power, "Return to top menu" },
+ { "restore-policy", com_power_policy, "Set power restore policy" },
{ "..", com_top, "Return to top menu" },
{ "quit", com_quit, "Quit using SILA Shell" },
{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
@@ -172,7 +170,8 @@ COMMAND server_admin_list[] = {
COMMAND server_operator_list[] = {
{ "help", com_help, "Display this text" },
{ "?", com_help, "Synonym for `help'" },
- { "power", com_power, "Return to top menu" },
+ { "power", com_power, "Run on/off/reset" },
+ { "restore-policy", com_power_policy, "Set power restore policy" },
{ "..", com_top, "Return to top menu" },
{ "quit", com_quit, "Quit using SILA Shell" },
{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
@@ -182,6 +181,7 @@ COMMAND server_user_list[] = {
{ "help", com_help, "Display this text" },
{ "?", com_help, "Synonym for `help'" },
{ "power", com_power, "Return to top menu" },
+ { "restore-policy", com_power_policy, "Set power restore policy" },
{ "..", com_top, "Return to top menu" },
{ "quit", com_quit, "Quit using SILA Shell" },
{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }