diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-05 05:32:06 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-05 05:32:06 -0400 |
commit | 018f85d5c9f3e268b9dee96c022a66ff697042dc (patch) | |
tree | 1d2d0fb47c089a7ffff0ca5134ddd6f344f4df9a | |
parent | sandbox: add --debug option to control SANDBOX_DEBUG (diff) | |
download | sandbox-018f85d5c9f3e268b9dee96c022a66ff697042dc.tar.gz sandbox-018f85d5c9f3e268b9dee96c022a66ff697042dc.tar.bz2 sandbox-018f85d5c9f3e268b9dee96c022a66ff697042dc.zip |
sandbox: move verbose startup info behind debug knob
These messages aren't super useful to most people, nor are needed on
every invocation, so put them behind a debug knob to reduce log spam.x
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | src/sandbox.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/sandbox.c b/src/sandbox.c index 063974d..02f4cbe 100644 --- a/src/sandbox.c +++ b/src/sandbox.c @@ -234,19 +234,22 @@ int main(int argc, char **argv) sb_err("not launching a new sandbox as one is already running in this process hierarchy"); /* determine the location of all the sandbox support files */ - dputs("Detection of the support files."); + if (opt_debug) + dputs("Detection of the support files."); if (-1 == setup_sandbox(&sandbox_info, print_debug)) sb_err("failed to setup sandbox"); /* verify the existance of required files */ - dputs("Verification of the required files."); + if (opt_debug) + dputs("Verification of the required files."); if (!rc_file_exists(sandbox_info.sandbox_rc)) sb_perr("could not open the sandbox rc file: %s", sandbox_info.sandbox_rc); /* set up the required environment variables */ - dputs("Setting up the required environment variables."); + if (opt_debug) + dputs("Setting up the required environment variables."); /* If not in portage, cd into it work directory */ if ('\0' != sandbox_info.work_dir[0]) @@ -346,9 +349,8 @@ int main(int argc, char **argv) sigaction(SIGHUP, &act_old[0], NULL); /* STARTING PROTECTED ENVIRONMENT */ - dputs("The protected environment has been started."); - dputs(sandbox_footer); - dputs("Process being started in forked instance."); + if (opt_debug) + dputs("The protected environment has been started."); /* Start Bash */ int shell_exit = spawn_shell(argv_bash, sandbox_environ, print_debug); @@ -359,8 +361,6 @@ int main(int argc, char **argv) argv_bash = NULL; sandbox_environ = NULL; - dputs("Cleaning up sandbox process"); - dputs(sandbox_banner); dputs("The protected environment has been shut down."); if (rc_file_exists(sandbox_info.sandbox_log)) { |