/usr/src/openswan-2.6.38/packaging/utils/recan is in openswan-modules-dkms 1:2.6.38-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 | #! /bin/sh
# recan release
# run in a working directory to recan contents of same where necessary
PATH=/bin:/usr/bin ; export PATH
umask 022
. ~freeswan/setup
case $# in
0) echo "Usage: $0 release [file] ..." >&2 ; exit 2 ;;
esac
tag="R`echo $1 | tr '.' '_'`"
shift
cvs tag -F -D now $tag $*
|