From cd6685d726b358bd4a2e0bebcd3d33258df702a6 Mon Sep 17 00:00:00 2001 From: git-ew Date: Wed, 20 May 2015 01:50:51 -0400 Subject: [PATCH] Update waagent Added class and fleshing out KaliDistro --- waagent | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/waagent b/waagent index b2505f1..fc11890 100644 --- a/waagent +++ b/waagent @@ -1317,6 +1317,13 @@ class debianDistro(AbstractDistro): ############################################################ # KaliDistro - WIP ############################################################ +class KaliDistro(debianDistro): + """ + Kali Distro concrete class + Put Kali specific behavior here... + """ + def __init__(self): + super(KaliDistro,self).__init__() ############################################################ # UbuntuDistro