mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 17:20:29 -04:00
Iridium is a free, open, and libre browser modification of the Chromium code base, with privacy being enhanced in several key areas. Automatic transmission of partial queries, keywords, metrics to central services is inhibited and only occurs with consent. WWW: https://iridiumbrowser.de/
19 lines
416 B
Bash
19 lines
416 B
Bash
#!/bin/sh
|
|
|
|
SYSCTL=kern.ipc.shm_allow_removed
|
|
if [ "`/sbin/sysctl -n $SYSCTL`" = 0 ] ; then
|
|
cat << EOMSG
|
|
For correct operation, shared memory support has to be enabled
|
|
in Iridium by performing the following command as root :
|
|
|
|
sysctl $SYSCTL=1
|
|
|
|
To preserve this setting across reboots, append the following
|
|
to /etc/sysctl.conf :
|
|
|
|
$SYSCTL=1
|
|
EOMSG
|
|
exit 1
|
|
fi
|
|
ulimit -c 0
|
|
exec %%PREFIX%%/share/iridium/iridium ${1+"$@"}
|