diff options
Diffstat (limited to 'Linux/mkinit')
-rwxr-xr-x | Linux/mkinit | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Linux/mkinit b/Linux/mkinit new file mode 100755 index 0000000000000..3e188e0fb125d --- /dev/null +++ b/Linux/mkinit @@ -0,0 +1,10 @@ +#!/bin/sh +if [ -f /etc/SuSE-release ] ; then + cp ipfilter-suse $1/ipfilter + exit 0 +fi +if [ -f /etc/redhat-release ] ; then + cp ipfilter-redhat $1/ipfilter + exit 0 +fi +exit 1 |