aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure6
-rw-r--r--configure.ac2
-rw-r--r--platform/debian/control2
-rw-r--r--platform/debian/copyright2
-rwxr-xr-xplatform/rpm/mkrpm.sh2
-rw-r--r--src/firejail/usage.c2
-rw-r--r--src/firemon/usage.c2
-rw-r--r--src/man/firejail-login.txt2
-rw-r--r--src/man/firejail-profile.txt2
-rw-r--r--src/man/firejail.txt2
-rw-r--r--src/man/firemon.txt2
11 files changed, 13 insertions, 13 deletions
diff --git a/configure b/configure
index 56a08d0e7..0665a46ed 100755
--- a/configure
+++ b/configure
@@ -583,7 +583,7 @@ PACKAGE_TARNAME='firejail'
583PACKAGE_VERSION='0.9.31' 583PACKAGE_VERSION='0.9.31'
584PACKAGE_STRING='firejail 0.9.31' 584PACKAGE_STRING='firejail 0.9.31'
585PACKAGE_BUGREPORT='netblue30@yahoo.com' 585PACKAGE_BUGREPORT='netblue30@yahoo.com'
586PACKAGE_URL='http://firejail.sourceforge.net' 586PACKAGE_URL='http://github.com/netblue30/firejail'
587 587
588ac_unique_file="src/firejail/main.c" 588ac_unique_file="src/firejail/main.c"
589# Factoring default headers for most tests. 589# Factoring default headers for most tests.
@@ -1326,7 +1326,7 @@ Use these variables to override the choices made by `configure' or to help
1326it to find libraries and programs with nonstandard names/locations. 1326it to find libraries and programs with nonstandard names/locations.
1327 1327
1328Report bugs to <netblue30@yahoo.com>. 1328Report bugs to <netblue30@yahoo.com>.
1329firejail home page: <http://firejail.sourceforge.net>. 1329firejail home page: <https://github.com/netblue30/firejail>.
1330_ACEOF 1330_ACEOF
1331ac_status=$? 1331ac_status=$?
1332fi 1332fi
@@ -4150,7 +4150,7 @@ Configuration files:
4150$config_files 4150$config_files
4151 4151
4152Report bugs to <netblue30@yahoo.com>. 4152Report bugs to <netblue30@yahoo.com>.
4153firejail home page: <http://firejail.sourceforge.net>." 4153firejail home page: <http://github.com/netblue30/firejail>."
4154 4154
4155_ACEOF 4155_ACEOF
4156cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 4156cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
diff --git a/configure.ac b/configure.ac
index 0ccba0a13..997e159e8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1AC_PREREQ([2.68]) 1AC_PREREQ([2.68])
2AC_INIT(firejail, 0.9.31, netblue30@yahoo.com, , http://firejail.sourceforge.net) 2AC_INIT(firejail, 0.9.31, netblue30@yahoo.com, , http://github.com/netblue30/firejail)
3AC_CONFIG_SRCDIR([src/firejail/main.c]) 3AC_CONFIG_SRCDIR([src/firejail/main.c])
4#AC_CONFIG_HEADERS([config.h]) 4#AC_CONFIG_HEADERS([config.h])
5 5
diff --git a/platform/debian/control b/platform/debian/control
index 18d857c36..991abb656 100644
--- a/platform/debian/control
+++ b/platform/debian/control
@@ -6,7 +6,7 @@ Installed-Size: 272
6Depends: libc6 6Depends: libc6
7Section: admin 7Section: admin
8Priority: extra 8Priority: extra
9Homepage: http://firejail.sourceforge.net 9Homepage: http://github.com/netblue30/firejail
10Description: Linux namepaces sandbox program. 10Description: Linux namepaces sandbox program.
11 Firejail is a SUID sandbox program that reduces the risk of security 11 Firejail is a SUID sandbox program that reduces the risk of security
12 breaches by restricting the running environment of untrusted applications 12 breaches by restricting the running environment of untrusted applications
diff --git a/platform/debian/copyright b/platform/debian/copyright
index 7d8d0a2c7..4fd3a15d1 100644
--- a/platform/debian/copyright
+++ b/platform/debian/copyright
@@ -26,5 +26,5 @@ This is the Debian/Ubuntu prepackaged version of firejail.
26The complete text of the GNU General Public License can be found 26The complete text of the GNU General Public License can be found
27in /usr/share/common-licenses/GPL-2. 27in /usr/share/common-licenses/GPL-2.
28 28
29Homepage: http://firejail.sourceforge.net. 29Homepage: http://github.com/netblue30/firejail.
30 30
diff --git a/platform/rpm/mkrpm.sh b/platform/rpm/mkrpm.sh
index 4413b2fcb..2e17fdfc1 100755
--- a/platform/rpm/mkrpm.sh
+++ b/platform/rpm/mkrpm.sh
@@ -93,7 +93,7 @@ Release: 1
93License: GPL+ 93License: GPL+
94Group: Development/Tools 94Group: Development/Tools
95SOURCE0 : %{name}-%{version}.tar.gz 95SOURCE0 : %{name}-%{version}.tar.gz
96URL: http://firejail.sourceforege.net 96URL: http://github.com/netblue30/firejail
97 97
98BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root 98BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
99 99
diff --git a/src/firejail/usage.c b/src/firejail/usage.c
index b4024ff6f..dec8c5349 100644
--- a/src/firejail/usage.c
+++ b/src/firejail/usage.c
@@ -342,6 +342,6 @@ void usage(void) {
342 printf(" list all running sandboxes\n"); 342 printf(" list all running sandboxes\n");
343 printf("\n"); 343 printf("\n");
344 printf("License GPL version 2 or later\n"); 344 printf("License GPL version 2 or later\n");
345 printf("Homepage: http://firejail.sourceforge.net\n"); 345 printf("Homepage: http://github.com/netblue30/firejail\n");
346 printf("\n"); 346 printf("\n");
347} 347}
diff --git a/src/firemon/usage.c b/src/firemon/usage.c
index 52788807a..92aac1b88 100644
--- a/src/firemon/usage.c
+++ b/src/firemon/usage.c
@@ -72,6 +72,6 @@ void usage(void) {
72 printf("\tUser - The owner of the sandbox.\n"); 72 printf("\tUser - The owner of the sandbox.\n");
73 printf("\n"); 73 printf("\n");
74 printf("License GPL version 2 or later\n"); 74 printf("License GPL version 2 or later\n");
75 printf("Homepage: http://firejail.sourceforge.net\n"); 75 printf("Homepage: http://github.com/netblue30/firejail\n");
76 printf("\n"); 76 printf("\n");
77} 77}
diff --git a/src/man/firejail-login.txt b/src/man/firejail-login.txt
index c3ee50ecf..0064013c9 100644
--- a/src/man/firejail-login.txt
+++ b/src/man/firejail-login.txt
@@ -28,7 +28,7 @@ usermod \-\-shell /usr/bin/firejail username
28.SH LICENSE 28.SH LICENSE
29Firejail is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 29Firejail is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
30.PP 30.PP
31Homepage: http://firejail.sourceforge.net 31Homepage: http://github.com/netblue30/firejail
32.SH SEE ALSO 32.SH SEE ALSO
33\&\flfirejail\fR\|(1), 33\&\flfirejail\fR\|(1),
34\&\flfiremon\fR\|(1), 34\&\flfiremon\fR\|(1),
diff --git a/src/man/firejail-profile.txt b/src/man/firejail-profile.txt
index 470cade7e..e470cab36 100644
--- a/src/man/firejail-profile.txt
+++ b/src/man/firejail-profile.txt
@@ -277,7 +277,7 @@ Set a DNS server for the sandbox. Up to three DNS servers can be defined.
277.SH LICENSE 277.SH LICENSE
278Firejail is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 278Firejail is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
279.PP 279.PP
280Homepage: http://firejail.sourceforge.net 280Homepage: http://github.com/netblue30/firejail
281.SH SEE ALSO 281.SH SEE ALSO
282\&\flfirejail\fR\|(1), 282\&\flfirejail\fR\|(1),
283\&\flfiremon\fR\|(1), 283\&\flfiremon\fR\|(1),
diff --git a/src/man/firejail.txt b/src/man/firejail.txt
index 6984c559b..af3a18746 100644
--- a/src/man/firejail.txt
+++ b/src/man/firejail.txt
@@ -1361,7 +1361,7 @@ List all sandboxed processes.
1361.SH LICENSE 1361.SH LICENSE
1362This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 1362This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
1363.PP 1363.PP
1364Homepage: http://firejail.sourceforge.net 1364Homepage: http://github.com/netblue30/firejail
1365.SH SEE ALSO 1365.SH SEE ALSO
1366\&\flfiremon\fR\|(1), 1366\&\flfiremon\fR\|(1),
1367\&\flfirejail-profile\fR\|(5), 1367\&\flfirejail-profile\fR\|(5),
diff --git a/src/man/firemon.txt b/src/man/firemon.txt
index 293547a3b..9c14086e0 100644
--- a/src/man/firemon.txt
+++ b/src/man/firemon.txt
@@ -98,7 +98,7 @@ The owner of the sandbox.
98.SH LICENSE 98.SH LICENSE
99This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 99This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
100.PP 100.PP
101Homepage: http://firejail.sourceforge.net 101Homepage: http://github.com/netblue30/firejail
102.SH SEE ALSO 102.SH SEE ALSO
103\&\flfirejail\fR\|(1), 103\&\flfirejail\fR\|(1),
104\&\flfirejail-profile\fR\|(5), 104\&\flfirejail-profile\fR\|(5),