diff options
author | Maarten Vanraes <alien@mageia.org> | 2015-07-30 22:53:46 +0200 |
---|---|---|
committer | Maarten Vanraes <alien@mageia.org> | 2016-05-14 09:25:24 +0200 |
commit | 6df472b92d3ec94c45c52eb9252c258d782cf29d (patch) | |
tree | bbe0d14b92670f1c532d50f7621d8bee409259d3 /scripts/manadisk | |
parent | 310d1a42031108d9d58849036e5f90bd0b4a987d (diff) | |
download | manatools-6df472b92d3ec94c45c52eb9252c258d782cf29d.tar manatools-6df472b92d3ec94c45c52eb9252c258d782cf29d.tar.gz manatools-6df472b92d3ec94c45c52eb9252c258d782cf29d.tar.bz2 manatools-6df472b92d3ec94c45c52eb9252c258d782cf29d.tar.xz manatools-6df472b92d3ec94c45c52eb9252c258d782cf29d.zip |
manadisk: preliminary layout for manadisk
Diffstat (limited to 'scripts/manadisk')
-rwxr-xr-x | scripts/manadisk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/manadisk b/scripts/manadisk new file mode 100755 index 00000000..04b98da4 --- /dev/null +++ b/scripts/manadisk @@ -0,0 +1,26 @@ +#!/usr/bin/perl +# vim: set et ts=4 sw=4: +# Copyright 2014 - 2015 Angelo Naselli +# +# This file is part of manatools +# +# manaclock is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# manaclock is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ManaTools. If not, see <http://www.gnu.org/licenses/>. + +use ManaTools::Module::Disk; + +my $diskManager = ManaTools::Module::Disk->new(); + +$diskManager->start(); + +1; |