Mageia Bugzilla – Attachment 14272 Details for
Bug 32725
chromium-browser-stable new security issues fixed in 120.0.6099.224
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
chrome-wrapper for test
chromium-wrapper herman (text/plain), 1.45 KB, created by
christian barranco
on 2024-01-20 13:26:35 CET
(
hide
)
Description:
chrome-wrapper for test
Filename:
MIME Type:
Creator:
christian barranco
Created:
2024-01-20 13:26:35 CET
Size:
1.45 KB
patch
obsolete
>#!/usr/bin/bash ># ># Copyright (c) 2009 The Chromium Authors. All rights reserved. ># Use of this source code is governed by a BSD-style license that can be ># found in the LICENSE file. > ># Let the wrapped binary know that it has been run through the wrapper >export CHROME_WRAPPER="`readlink -f "$0"`" > >PROGDIR="`dirname "$CHROME_WRAPPER"`" > ># makes RPMs find the compatibly-named library symlinks. >if [[ -n "$LD_LIBRARY_PATH" ]]; then > case ":$LD_LIBRARY_PATH:" in > *:$PROGDIR:*) > # $LD_LIBRARY_PATH already contains $PROGDIR > ;; > *) > # Append $PROGDIR to $LD_LIBRARY_PATH > export LD_LIBRARY_PATH="$PROGDIR:$LD_LIBRARY_PATH" > ;; > esac >else > export LD_LIBRARY_PATH="$PROGDIR" >fi > >EXTRA_ARGS="--no-default-browser-check \ > --enable-plugins \ > --enable-extensions \ > --enable-user-scripts \ > --enable-printing \ > --enable-sync \ > --auto-ssl-client-auth @@EXTRA_FLAGS@@" > >USER_ARGS_FILE=$HOME/.config/chromium/args.txt > >if [ -f "$USER_ARGS_FILE" ]; then > EXTRA_ARGS+=$(grep -v '^#' "$USER_ARGS_FILE") >fi > >export CHROME_VERSION_EXTRA="stable" > ># We don't want bug-buddy intercepting our crashes. http://crbug.com/24120 >export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME > ># Sanitize std{in,out,err} because they'll be shared with untrusted child ># processes (http://crbug.com/376567). >exec < /dev/null >exec > >(exec cat) >exec 2> >(exec cat >&2) > >exec -a "$0" "$PROGDIR/chrome" $EXTRA_ARGS "$@"
#!/usr/bin/bash # # Copyright (c) 2009 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Let the wrapped binary know that it has been run through the wrapper export CHROME_WRAPPER="`readlink -f "$0"`" PROGDIR="`dirname "$CHROME_WRAPPER"`" # makes RPMs find the compatibly-named library symlinks. if [[ -n "$LD_LIBRARY_PATH" ]]; then case ":$LD_LIBRARY_PATH:" in *:$PROGDIR:*) # $LD_LIBRARY_PATH already contains $PROGDIR ;; *) # Append $PROGDIR to $LD_LIBRARY_PATH export LD_LIBRARY_PATH="$PROGDIR:$LD_LIBRARY_PATH" ;; esac else export LD_LIBRARY_PATH="$PROGDIR" fi EXTRA_ARGS="--no-default-browser-check \ --enable-plugins \ --enable-extensions \ --enable-user-scripts \ --enable-printing \ --enable-sync \ --auto-ssl-client-auth @@EXTRA_FLAGS@@" USER_ARGS_FILE=$HOME/.config/chromium/args.txt if [ -f "$USER_ARGS_FILE" ]; then EXTRA_ARGS+=$(grep -v '^#' "$USER_ARGS_FILE") fi export CHROME_VERSION_EXTRA="stable" # We don't want bug-buddy intercepting our crashes. http://crbug.com/24120 export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME # Sanitize std{in,out,err} because they'll be shared with untrusted child # processes (http://crbug.com/376567). exec < /dev/null exec > >(exec cat) exec 2> >(exec cat >&2) exec -a "$0" "$PROGDIR/chrome" $EXTRA_ARGS "$@"
View Attachment As Raw
Actions:
View
Attachments on
bug 32725
: 14272 |
14273