X-Git-Url: https://git.siccegge.de//index.cgi?p=forks%2Fvmdebootstrap.git;a=blobdiff_plain;f=vmdebootstrap;h=a5537b7abd6f6191ddc2cf8704470db9082184f5;hp=a7a67e10bff214c9a06ceb2eba2b92a340ac188d;hb=0bc3dbfc1fc101a372572aab597175aad45c0be7;hpb=dbd91a3dcb756fc4ea4ba929bd026c8a06d1b24d diff --git a/vmdebootstrap b/vmdebootstrap index a7a67e1..a5537b7 100755 --- a/vmdebootstrap +++ b/vmdebootstrap @@ -25,6 +25,9 @@ import subprocess import tempfile +__version__ = '0.1.0' + + class VmDebootstrap(cliapp.Application): def add_settings(self): @@ -404,5 +407,5 @@ append initrd=%(initrd)s root=UUID=%(uuid)s ro %(kserial)s if __name__ == '__main__': - VmDebootstrap().run() + VmDebootstrap(version=__version__).run()