summaryrefslogtreecommitdiff
path: root/vmdebootstrap/filesystem.py
diff options
context:
space:
mode:
authorNeil Williams <codehelp@debian.org>2015-08-15 14:33:59 +0200
committerNeil Williams <codehelp@debian.org>2015-08-16 14:28:35 +0200
commit54b1ab7ea71a857791189d7a2108c8b76cbfde2a (patch)
tree1515a90e7e8a8986277adc2654f001e8ecdbcce0 /vmdebootstrap/filesystem.py
parentca8829488c49ae4801ef91eed6d17f7bad892eef (diff)
downloadvmdebootstrap-54b1ab7ea71a857791189d7a2108c8b76cbfde2a.tar.gz
move handlers into a module directory
Diffstat (limited to 'vmdebootstrap/filesystem.py')
-rw-r--r--vmdebootstrap/filesystem.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/vmdebootstrap/filesystem.py b/vmdebootstrap/filesystem.py
new file mode 100644
index 0000000..e0a16d9
--- /dev/null
+++ b/vmdebootstrap/filesystem.py
@@ -0,0 +1,31 @@
+"""
+ Wrapper for filesystem utilities
+"""
+# -*- coding: utf-8 -*-
+#
+# filesystem.py
+#
+# Copyright 2015 Neil Williams <codehelp@debian.org>
+#
+# This program 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 3 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+
+from vmdebootstrap.base import Base
+
+
+class Filesystem(Base):
+
+ name = 'filesystem'
+
+ def __init__(self):
+ super(Filesystem, self).__init__()