/usr/lib/mysql-mmm/tools/remove_snapshot is in mysql-mmm-tools 2.2.1-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 | #!/usr/bin/env perl
use strict;
use warnings FATAL => 'all';
use MMM::Common::Config;
use MMM::Tools::Snapshot::LVM;
our $config = new MMM::Common::Config::;
$config->read("mmm_tools");
$config->check('TOOLS');
print MMM::Tools::Snapshot::LVM::remove(), "\n";
exit(0);
__END__
=head1 NAME
remove_snapshot
=head1 DESCRIPTION
remove_snapshot is a helper binary for the mmm tools. It removes a snapshot created by B<create_snapshot>.
=head1 USAGE
remove_snapshot
|