diff options
author | Stef Walter <stef@thewalter.net> | 2007-05-28 18:56:59 +0000 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2007-05-28 18:56:59 +0000 |
commit | 1c1512462aee7c743327f5abdd530ac1f6a65743 (patch) | |
tree | b1458f75ec30d48e86dbaf1e05ce9863905183b3 | |
parent | 7b9cf12753de2baaaa5cc5d4c6f616b040492f55 (diff) |
-rwxr-xr-x | AUTHORS | 2 | ||||
-rwxr-xr-x | BUGS | 2 | ||||
-rwxr-xr-x | COPYING | 2 | ||||
-rwxr-xr-x | ChangeLog | 6 | ||||
-rwxr-xr-x | README | 2 | ||||
-rwxr-xr-x | config.h.in | 8 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rwxr-xr-x | doc/jailer_man.html | 2 | ||||
-rwxr-xr-x | scripts/Makefile.am | 13 | ||||
-rwxr-xr-x | scripts/halt | 4 | ||||
-rwxr-xr-x | scripts/reboot | 4 | ||||
-rwxr-xr-x | src/dmesg.c | 4 | ||||
-rwxr-xr-x | src/injail.c | 4 | ||||
-rwxr-xr-x | src/injail_main.c | 4 | ||||
-rwxr-xr-x | src/jailer.8 | 2 | ||||
-rwxr-xr-x | src/jailer.c | 4 |
16 files changed, 31 insertions, 34 deletions
@@ -1,4 +1,4 @@ -nielsen@memberwebs.com +stef@memberwebs.com stef0x77@yahoo.com Patches and Contributions: @@ -2,4 +2,4 @@ JAILER TODOS and BUGS - shutdown(8) doesn't work with the halt and reboot scripts - No console support on FreeBSD 5.0 due to devfs (will work on this shortly) -- I'm sure there's more out there. LMK at nielsen@memberwebs.com +- I'm sure there's more out there. LMK at stef@memberwebs.com @@ -10,5 +10,5 @@ contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software. SUPPORT -Send bug reports to: <nielsen@memberwebs.com> +Send bug reports to: <stef@memberwebs.com> @@ -1,5 +1,7 @@ -Version 1.0 - - Conditionally remove console support on FreeBSD 5.0 +Version 1.2 + - Use my real name 'Stef Walter' + See: http://memberwebs.com/nielsen/ + - Conditionally remove console support on FreeBSD 5.x and 6.x Version 1.1.2 - Uses select when piping output from scripts @@ -21,4 +21,4 @@ running inside that jail. The signals are: For further jail aids see: -http://memberwebs.com/nielsen/freebsd/jails/ +http://memberwebs.com/swalter/freebsd/jails/ diff --git a/config.h.in b/config.h.in index 433fc96..9db52fd 100755 --- a/config.h.in +++ b/config.h.in @@ -116,6 +116,9 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION +/* Define to 1 if the C compiler supports function prototypes. */ +#undef PROTOTYPES + /* Define as the return type of signal handlers (`int' or `void'). */ #undef RETSIGTYPE @@ -133,13 +136,16 @@ /* Version number of package */ #undef VERSION +/* Define like PROTOTYPES; this can be used by system headers. */ +#undef __PROTOTYPES + /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `int' if <sys/types.h> does not define. */ #undef pid_t -/* Define to `unsigned' if <sys/types.h> does not define. */ +/* Define to `unsigned int' if <sys/types.h> does not define. */ #undef size_t /* Define as `fork' if `vfork' does not work. */ diff --git a/configure.ac b/configure.ac index b6d3209..4837a0d 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(jailer, 1.2, nielsen@memberwebs.com) +AC_INIT(jailer, 1.2, stef@memberwebs.com) AM_INIT_AUTOMAKE(jailer, 1.2) AC_CONFIG_SRCDIR([src/jailer.c]) diff --git a/doc/jailer_man.html b/doc/jailer_man.html index 229d297..2feac73 100755 --- a/doc/jailer_man.html +++ b/doc/jailer_man.html @@ -88,7 +88,7 @@ </PRE> <H2>AUTHOR</H2><PRE> - Nate Nielsen <nielsen@memberwebs.com> + Stef Walter <stef@memberwebs.com> diff --git a/scripts/Makefile.am b/scripts/Makefile.am index f901774..bb4c34a 100755 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -1,15 +1,4 @@ sbin_SCRIPTS = halt reboot EXTRA_DIST = halt reboot -POST_INSTALL = echo ' \ -===============================================\ - To complete the installation execute the \ - following as root: \ - \ - cp $(sbindir)halt /sbin/halt \ - cp $(sbindir)reboot /sbin/reboot \ - chmod 400 /sbin/halt /sbin/reboot \ - \ - Make sure you're in a jail! \ - \ -==============================================='\
\ No newline at end of file + diff --git a/scripts/halt b/scripts/halt index f762495..4ec8561 100755 --- a/scripts/halt +++ b/scripts/halt @@ -1,7 +1,7 @@ #!/bin/sh # # AUTHOR -# N. Nielsen +# Stef Walter # # LICENSE # This software is in the public domain. @@ -15,7 +15,7 @@ # with the software or the use or other dealings in the software. # # SUPPORT -# Send bug reports to: <nielsen@memberwebs.com> +# Send bug reports to: <stef@memberwebs.com> # # diff --git a/scripts/reboot b/scripts/reboot index c07bd15..ae932ae 100755 --- a/scripts/reboot +++ b/scripts/reboot @@ -1,7 +1,7 @@ #!/bin/sh # # AUTHOR -# N. Nielsen +# Stef Walter # # LICENSE # This software is in the public domain. @@ -15,7 +15,7 @@ # with the software or the use or other dealings in the software. # # SUPPORT -# Send bug reports to: <nielsen@memberwebs.com> +# Send bug reports to: <stef@memberwebs.com> # # diff --git a/src/dmesg.c b/src/dmesg.c index af6fbbd..8e1d54d 100755 --- a/src/dmesg.c +++ b/src/dmesg.c @@ -1,6 +1,6 @@ /* // AUTHOR -// N. Nielsen +// Stef Walter // // LICENSE // This software is in the public domain. @@ -14,7 +14,7 @@ // with the software or the use or other dealings in the software. // // SUPPORT -// Send bug reports to: <nielsen@memberwebs.com> +// Send bug reports to: <stef@memberwebs.com> // // CHANGES // 1.1 diff --git a/src/injail.c b/src/injail.c index 7d653a6..faff60a 100755 --- a/src/injail.c +++ b/src/injail.c @@ -1,7 +1,7 @@ /* // AUTHOR // James Quick <jq@quick.com> -// N. Nielsen +// Stef Walter // // LICENSE // This software is in the public domain. @@ -15,7 +15,7 @@ // with the software or the use or other dealings in the software. // // SUPPORT -// Send bug reports to: <nielsen@memberwebs.com> +// Send bug reports to: <stef@memberwebs.com> // // injail // A utility function to determine if a process is running in a FreeBSD jail. diff --git a/src/injail_main.c b/src/injail_main.c index aaf8034..acb8735 100755 --- a/src/injail_main.c +++ b/src/injail_main.c @@ -1,6 +1,6 @@ /* // AUTHOR -// N. Nielsen +// Stef Walter // James Quick <jq@quick.com> // // LICENSE @@ -15,7 +15,7 @@ // with the software or the use or other dealings in the software. // // SUPPORT -// Send bug reports to: <nielsen@memberwebs.com> +// Send bug reports to: <stef@memberwebs.com> // // CHANGES // 1.1 diff --git a/src/jailer.8 b/src/jailer.8 index 9c9b1f9..e16794a 100755 --- a/src/jailer.8 +++ b/src/jailer.8 @@ -122,7 +122,7 @@ and scripts. .SH AUTHOR -Nate Nielsen <nielsen@memberwebs.com> +Stef Walter <stef@memberwebs.com> .SH "SEE ALSO" .BR jail (8), diff --git a/src/jailer.c b/src/jailer.c index 8b49489..5b59eed 100755 --- a/src/jailer.c +++ b/src/jailer.c @@ -1,6 +1,6 @@ /* // AUTHOR -// N. Nielsen +// Stef Walter // // LICENSE // This software is in the public domain. @@ -14,7 +14,7 @@ // with the software or the use or other dealings in the software. // // SUPPORT -// Send bug reports to: <nielsen@memberwebs.com> +// Send bug reports to: <stef@memberwebs.com> // // CHANGES // 1.1 |