/sbin/uruk-save is in uruk 20120608.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/sh
# uruk-save - directly dump /etc/uruk/rc to an iptables-save style
# file, without invoking iptables
# this file maintained using arch at http://arch.gna.org/uruk/
# Copyright (C) 2005 Joost van Baal
#
# This file is part of Uruk. Uruk is free software; you can redistribute
# it and/or modify it under the terms of the GNU GPL, see the file named
# COPYING.
echo -n "# Generated by uruk-save on "
date
cat <<EOT
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
EOT
if test "$1" = "-6"
then
URUK_IPTABLES=':' URUK_IP6TABLES='echo [0:0]' uruk
else
URUK_IPTABLES='echo [0:0]' URUK_IP6TABLES=':' uruk
fi
echo "COMMIT"
echo -n "# Completed on "
date
|