mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
6 lines
170 B
Bash
Executable file
6 lines
170 B
Bash
Executable file
#!/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
|