strom/fish-misc
Archived
1
0
Fork 0
This repository has been archived on 2023-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
fish-misc/functions/netns.fish

8 lines
331 B
Fish

# vim: ft=fish ts=4 sw=4 noet
function netns --description 'launch application into network namespace'
if command -sq firejail
firejail --quiet --noprofile --rmenv=LS_COLORS --netns=$argv[1] $argv[2..]
else
sudo -E ip netns exec $argv[1] setpriv --reuid (id -u) --regid (id -g) --clear-groups --reset-env $argv[2..]
end
end