/usr/sbin/register-common-lisp-source is in common-lisp-controller 7.10+nmu1.
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 | #!/bin/sh
# Copyright (C) 2006 René van Bevern <rvb@progn.org>
# Licensed under the LLGPL, see debian/copyright file
HOME=/tmp/
LANG=C
LC_ALL=C
export HOME LANG LC_ALL
umask 0022
if [ "$1" ]; then
/usr/sbin/clc-update-customized-images "$1"
fi
|