diff options
author | Robey Pointer <robey@src.gnome.org> | 2001-02-16 01:17:07 +0000 |
---|---|---|
committer | Robey Pointer <robey@src.gnome.org> | 2001-02-16 01:17:07 +0000 |
commit | c08cd310b037496d1cfca31c0cf7b0e79d0a48af (patch) | |
tree | d9fa7e2e6430db46412c107045e3e90677365e97 | |
parent | c8fcbdde0913ec492742f3b5921540f131681ee6 (diff) | |
download | nautilus-c08cd310b037496d1cfca31c0cf7b0e79d0a48af.tar.gz |
reviewed by: Robin * Slomkowski <rslomkow@eazel.com>
* nautilus-installer/src/installer.c:
For now, make the bootstrap installer always run in debug mode
and point to checkpoint:8888.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | nautilus-installer/src/installer.c | 8 |
2 files changed, 14 insertions, 3 deletions
@@ -1,5 +1,14 @@ 2001-02-15 Robey Pointer <robey@eazel.com> + reviewed by: Robin * Slomkowski <rslomkow@eazel.com> + + * nautilus-installer/src/installer.c: + + For now, make the bootstrap installer always run in debug mode + and point to checkpoint:8888. + +2001-02-15 Robey Pointer <robey@eazel.com> + reviewed by: Eskil Heyn Olsen <eskil@eazel.com> * components/services/trilobite/libtrilobite/trilobite-root-helper. diff --git a/nautilus-installer/src/installer.c b/nautilus-installer/src/installer.c index 889304bc9..4f80202a7 100644 --- a/nautilus-installer/src/installer.c +++ b/nautilus-installer/src/installer.c @@ -182,15 +182,17 @@ enum { char *text_labels[LAST_LABEL]; -int installer_debug = 0; +/* FIXME -- CHANGE THIS BEFORE RELEASING! */ +int installer_debug = 1; +char *installer_server = "checkpoint.eazel.com"; +int installer_server_port = 8888; + int installer_spam = 0; /* dump logging stuff to stderr (automatically adds --debug) */ int installer_test = 0; int installer_force = 0; int installer_local = 0; char *installer_package = NULL; int installer_dont_ask_questions = 0; -char *installer_server =NULL; -int installer_server_port = 0; char *installer_cgi_path = NULL; char *installer_tmpdir = "/tmp"; char *installer_homedir = NULL; |