mirror of https://github.com/PCSX2/pcsx2.git
7 lines
170 B
Plaintext
7 lines
170 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
echo 'Enabling networking capability on Linux...'
|
||
|
set -x
|
||
|
[ -f /usr/games/PCSX2 ] && setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/games/PCSX2
|
||
|
set +x
|