diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-05 03:35:50 -0500 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-05 03:36:23 -0500 |
commit | ffefb55a4a1bc00bceaa1ba477cf1db3e8635589 (patch) | |
tree | 26aeea6037253ce51a3c460b319bfb22782eeaad | |
parent | Better variable names (diff) | |
download | openrc-settingsd-ffefb55a4a1bc00bceaa1ba477cf1db3e8635589.tar.gz openrc-settingsd-ffefb55a4a1bc00bceaa1ba477cf1db3e8635589.tar.bz2 openrc-settingsd-ffefb55a4a1bc00bceaa1ba477cf1db3e8635589.zip |
Add --read-only flag
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | src/main.c | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -7,8 +7,6 @@ document that this case is not supported? Write an init.d file to read RC_SYS so that we can piggyback on openrc's built-in virtualization detection. -Add command-line arguments (e.g. --no-hostnamed --readonly-localed). - Implement localed and timedated. Do something about runtime dependency on systemd's org.freedesktop.hostname1.policy, @@ -30,10 +30,12 @@ #define DEFAULT_LEVELS (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE) static gboolean debug = FALSE; +static gboolean read_only = FALSE; static GOptionEntry option_entries[] = { { "debug", 0, 0, G_OPTION_ARG_NONE, &debug, "Enable debugging messages", NULL }, + { "read-only", 0, 0, G_OPTION_ARG_NONE, &read_only, "Run in read-only mode", NULL }, { NULL } }; @@ -65,7 +67,7 @@ main (gint argc, gchar *argv[]) } shell_utils_init (); - hostnamed_init (FALSE); + hostnamed_init (read_only); loop = g_main_loop_new (NULL, FALSE); g_main_loop_run (loop); |