/usr/sbin/maas-import-isos is in maas-cluster-controller 1.2+bzr1373+dfsg-0ubuntu1~12.04.6.
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 | #!/usr/bin/env bash
# Copyright 2012 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# Compatibility stub. This script has been replaced by maas-import-pxe-files
# and if run, will simply call the newer script instead.
#
# Expect this script to disappear at some point. Run maas-import-pxe-files
# instead.
# Exit immediately if a command exits with a non-zero status.
set -o errexit
# Treat unset variables as an error when substituting.
set -o nounset
cat >&2 <<EOF
Warning: maas-import-isos is obsolete, and will disappear in the future.
It has been replaced with maas-import-pxe-files.
Running maas-import-pxe-files now...
EOF
maas-import-pxe-files
|