Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable apparmor support by default in update_deb.sh #3450

Merged
merged 2 commits into from
Jun 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions contrib/update_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,19 @@
# Purpose: Fetch, compile, and install firejail from GitHub source. For
# Debian-based distros only (Ubuntu, Mint, etc).
set -e

git clone --depth=1 https://github.com/netblue30/firejail.git
cd firejail
./configure --prefix=/usr
./configure --enable-apparmor --prefix=/usr

# Fix https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916920
sed -i \
-e "s/# cgroup .*/cgroup no/" \
-e "s/# restricted-network .*/restricted-network yes/" \
etc/firejail.config

make deb
sudo dpkg -i firejail*.deb
echo "Firejail was updated!"
echo "Firejail updated."
cd ..
rm -rf firejail