From b64fc666672e4270ebae66986a0012b10a8fb265 Mon Sep 17 00:00:00 2001 From: lizzha Date: Tue, 30 Jun 2015 11:28:33 +0800 Subject: [PATCH] Add support for Asianux --- waagent | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/waagent b/waagent index 93722a0..a538adf 100644 --- a/waagent +++ b/waagent @@ -1022,6 +1022,19 @@ class centosDistro(redhatDistro): super(centosDistro,self).__init__() +############################################################ +# asianuxDistro +############################################################ + +class asianuxDistro(redhatDistro): + """ + Asianux Distro concrete class + Put Asianux specific behavior here... + """ + def __init__(self): + super(asianuxDistro,self).__init__() + + ############################################################ # CoreOSDistro ############################################################