X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/e83d0967d4c0965eb8036248acc20d1bf12ad1d8..0ca6d097e900ff5d46ffc4968a468fefecb345af:/server/disorderd.c diff --git a/server/disorderd.c b/server/disorderd.c index 4a3915a..944777a 100644 --- a/server/disorderd.c +++ b/server/disorderd.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006 Richard Kettlewell + * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,6 +19,7 @@ */ #include +#include "types.h" #include #include @@ -54,6 +55,7 @@ #include "mixer.h" #include "eventlog.h" #include "printf.h" +#include "setup.h" static ev_source *ev; @@ -70,6 +72,7 @@ static const struct option options[] = { { "log", required_argument, 0, 'l' }, { "pidfile", required_argument, 0, 'P' }, { "no-initial-rescan", no_argument, 0, 'N' }, + { "wide-open", no_argument, 0, 'w' }, { "syslog", no_argument, 0, 's' }, { 0, 0, 0, 0 } }; @@ -184,12 +187,13 @@ static void volumecheck_after(long offset) { /* We fix the path to include the bindir and sbindir we were installed into */ static void fix_path(void) { char *path = getenv("PATH"); - char *newpath; + static char *newpath; + /* static or libgc collects it! */ if(!path) error(0, "PATH is not set at all!"); - if(*finkbindir) + if(*finkbindir && strcmp(finkbindir, "/")) /* We appear to be a finkized mac; include fink on the path in case the * tools we need are there. */ byte_xasprintf(&newpath, "PATH=%s:%s:%s:%s", @@ -221,6 +225,7 @@ int main(int argc, char **argv) { case 'P': pidfile = optarg; break; case 'N': initial_rescan = 0; break; case 's': logsyslog = 1; break; + case 'w': wideopen = 1; break; default: fatal(0, "invalid option"); } } @@ -240,8 +245,12 @@ int main(int argc, char **argv) { ev = ev_new(); if(ev_child_setup(ev)) fatal(0, "ev_child_setup failed"); /* read config */ - if(config_read()) + if(config_read(1)) fatal(0, "cannot read configuration"); + /* make sure the home directory exists and has suitable permissions */ + make_home(); + /* create the default login */ + make_root_login(); /* Start the speaker process (as root! - so it can choose its nice value) */ speaker_setup(ev); /* set server nice value _after_ starting the speaker, so that they @@ -286,7 +295,7 @@ int main(int argc, char **argv) { /* periodically tidy up the database */ dbgc_after(60); /* periodically check the volume */ - volumecheck_after(60); + volumecheck_again(0, 0, 0); /* set initial state */ add_random_track(); play(ev);