X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2FBootManager.py;h=af5efa379e16708be6b1b683288f9919e66c8872;hb=7f60a98018578e2303a51f752721eb35a89ed461;hp=a118f662f28006e415e7cf0ba959b76f1b60c965;hpb=d4f836540ffe5042e93dfe084e1675ecbef7e348;p=bootmanager.git diff --git a/source/BootManager.py b/source/BootManager.py index a118f66..af5efa3 100755 --- a/source/BootManager.py +++ b/source/BootManager.py @@ -240,7 +240,7 @@ class BootManager: SendHardwareConfigToPLC.Run( self.VARS, self.LOG ) ChainBootNode.Run( self.VARS, self.LOG ) else: - self._nodeNotInstalled() + _nodeNotInstalled() def _newRun(): # implements the new install logic, which will first check @@ -252,7 +252,7 @@ class BootManager: return 0 self.VARS['BOOT_STATE']= 'rins' UpdateBootStateWithPLC.Run( self.VARS, self.LOG ) - self._rins() + _rinsRun() def _bootRun(): # implements the boot logic, which consists of first @@ -266,7 +266,7 @@ class BootManager: SendHardwareConfigToPLC.Run( self.VARS, self.LOG ) ChainBootNode.Run( self.VARS, self.LOG ) else: - self._nodeNotInstalled() + _nodeNotInstalled() def _debugRun():