Add support for sysprep-parameters
[snf-image-creator] / image_creator / os_type / netbsd.py
index bfb94d6..f8c7863 100644 (file)
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+#
 # Copyright 2012 GRNET S.A. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or
 # interpreted as representing official policies, either expressed
 # or implied, of GRNET S.A.
 
+"""This module hosts OS-specific code for NetBSD."""
+
 from image_creator.os_type.unix import Unix
 
 
 class Netbsd(Unix):
+    """OS class for NetBSD"""
     pass
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :