/usr/bin/cback-span is in cedar-backup2 2.26.5-3.
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 | #!/usr/bin/python
# -*- coding: iso-8859-1 -*-
# vim: set ft=python ts=3 sw=3 expandtab:
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# C E D A R
# S O L U T I O N S "Software done right."
# S O F T W A R E
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Author : Kenneth J. Pronovici <pronovic@ieee.org>
# Language : Python 2 (>= 2.7)
# Project : Cedar Backup, release 2
# Revision : $Id: cback 605 2005-02-25 00:51:07Z pronovic $
# Purpose : Implements Cedar Backup cback-span script.
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
"""
Implements Cedar Backup cback-span script.
@author: Kenneth J. Pronovici <pronovic@ieee.org>
"""
import sys
from CedarBackup2.tools.span import cli
result = cli()
sys.exit(result)
|