Browse Source

Changed log message

bugfixes
shitalp 10 years ago
parent
commit
89633ddcc7
  1. 14
      ee/cli/plugins/stack.py

14
ee/cli/plugins/stack.py

@ -1673,12 +1673,13 @@ class EEStackController(CementBaseController):
' on server after this operation.' ' on server after this operation.'
' Any answer other than ' ' Any answer other than '
' "yes" will be stop this' ' "yes" will be stop this'
' operation ') ' operation : ')
if ee_apt_pkg_prompt == 'YES' or ee_apt_pkg_prompt == 'yes': if ee_apt_pkg_prompt == 'YES' or ee_apt_pkg_prompt == 'yes':
Log.debug(self, "Removing apt_packages") Log.debug(self, "Removing apt_packages")
Log.info(self, "Removing packages, please wait ...") Log.info(self, "Removing packages, please wait ...")
EEAptGet.remove(self, apt_packages) EEAptGet.remove(self, apt_packages)
EEAptGet.auto_remove(self) EEAptGet.auto_remove(self)
Log.info(self, "Successfully removed packages")
if len(packages): if len(packages):
ee_pkg_prompt = input('Are you sure you to want to purge' ee_pkg_prompt = input('Are you sure you to want to purge'
' from server.' ' from server.'
@ -1686,12 +1687,12 @@ class EEStackController(CementBaseController):
'on server after this operation.' 'on server after this operation.'
' Any answer other than ' ' Any answer other than '
'"yes" will be stop this ' '"yes" will be stop this '
'operation ') 'operation : ')
if ee_pkg_prompt == 'YES' or ee_pkg_prompt == 'yes': if ee_pkg_prompt == 'YES' or ee_pkg_prompt == 'yes':
EEFileUtils.remove(self, packages) EEFileUtils.remove(self, packages)
EEAptGet.auto_remove(self) EEAptGet.auto_remove(self)
Log.info(self, "Successfully removed packages") Log.info(self, "Successfully removed packages")
@expose(help="Purge packages") @expose(help="Purge packages")
def purge(self): def purge(self):
@ -1790,23 +1791,24 @@ class EEStackController(CementBaseController):
'alongwith their configuration.' 'alongwith their configuration.'
' packages Any answer other than ' ' packages Any answer other than '
'"yes" will be stop this ' '"yes" will be stop this '
'operation ') 'operation :')
if ee_apt_pkg_prompt == 'YES' or ee_apt_pkg_prompt == 'yes': if ee_apt_pkg_prompt == 'YES' or ee_apt_pkg_prompt == 'yes':
Log.info(self, "Purging packages, please wait ...") Log.info(self, "Purging packages, please wait ...")
EEAptGet.remove(self, apt_packages, purge=True) EEAptGet.remove(self, apt_packages, purge=True)
EEAptGet.auto_remove(self) EEAptGet.auto_remove(self)
Log.info(self, "Successfully purged packages")
if len(packages): if len(packages):
ee_pkg_prompt = input('Are you sure you to want to purge ' ee_pkg_prompt = input('Are you sure you to want to purge '
' from server alongwith ' ' from server alongwith '
' their configuration.' ' their configuration.'
' packages Any answer other than ' ' packages Any answer other than '
'"yes" will be stop this ' '"yes" will be stop this '
'operation ') 'operation :')
if ee_pkg_prompt == 'YES' or ee_pkg_prompt == 'yes': if ee_pkg_prompt == 'YES' or ee_pkg_prompt == 'yes':
EEFileUtils.remove(self, packages) EEFileUtils.remove(self, packages)
EEAptGet.auto_remove(self) EEAptGet.auto_remove(self)
Log.info(self, "Successfully purged packages") Log.info(self, "Successfully purged packages")
def load(app): def load(app):

Loading…
Cancel
Save