aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-06-17 08:30:11 -0400
committerLibravatar netblue30 <netblue30@protonmail.com>2022-06-17 08:30:11 -0400
commit756fed6bd3a5aae5ca42f4268eca9b7146fbd4f4 (patch)
tree3dac5f7485a5cc1fff17dee8220cb4792687d447
parentMerge pull request #5206 from kmk3/fix-file-mode-sh (diff)
downloadfirejail-756fed6bd3a5aae5ca42f4268eca9b7146fbd4f4.tar.gz
firejail-756fed6bd3a5aae5ca42f4268eca9b7146fbd4f4.tar.zst
firejail-756fed6bd3a5aae5ca42f4268eca9b7146fbd4f4.zip
remving src/fgit
-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