aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/fgit/fgit-install.sh24
-rwxr-xr-xsrc/fgit/fgit-uninstall.sh20
2 files changed, 0 insertions, 44 deletions
diff --git a/src/fgit/fgit-install.sh b/src/fgit/fgit-install.sh
deleted file mode 100755
index 262b6f112..000000000
--- a/src/fgit/fgit-install.sh
+++ /dev/null
@@ -1,24 +0,0 @@
1#!/bin/sh
2# This file is part of Firejail project
3# Copyright (C) 2014-2020 Firejail Authors
4# License GPL v2
5#
6# Purpose: Fetch, compile, and install firejail from GitHub source. Package-manager agnostic.
7#
8
9set -e # exit immediately if one of the commands fails
10cd /tmp # by the time we start this, we should have a tmpfs mounted on top of /tmp
11git clone --depth=1 https://www.github.com/netblue30/firejail.git
12cd firejail
13./configure --enable-git-install
14make
15sudo make install-strip
16echo "**********************************************************************"
17echo "Mainline git Firejail version was installed in /usr/local."
18echo "If you want to remove it, run"
19echo
20echo " firejail --git-uninstall"
21echo
22echo "**********************************************************************"
23cd ..
24rm -rf firejail
diff --git a/src/fgit/fgit-uninstall.sh b/src/fgit/fgit-uninstall.sh
deleted file mode 100755
index d40f90320..000000000
--- a/src/fgit/fgit-uninstall.sh
+++ /dev/null
@@ -1,20 +0,0 @@
1#!/bin/sh
2# This file is part of Firejail project
3# Copyright (C) 2014-2020 Firejail Authors
4# License GPL v2
5#
6# Purpose: Fetch, compile, and install firejail from GitHub source. Package-manager agnostic.
7#
8
9set -e # exit immediately if one of the commands fails
10cd /tmp # by the time we start this, we should have a tmpfs mounted on top of /tmp
11git clone --depth=1 https://www.github.com/netblue30/firejail.git
12cd firejail
13./configure --enable-git-install
14sudo make uninstall
15echo "**********************************************************************"
16echo "Firejail mainline git version uninstalled from /usr/local"
17echo
18echo "**********************************************************************"
19cd ..
20rm -rf firejail