fix who doesn't exist on some distros

If it doesn't exist, raise an exception.
This commit is contained in:
Chi Song 2020-11-12 09:19:14 +08:00
Родитель 937b5893d1
Коммит 267eef7c71
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -12,8 +12,9 @@ class Who(Tool):
def command(self) -> str:
return "who"
def _check_exists(self) -> bool:
return True
@property
def can_install(self) -> bool:
return False
def last_boot(self, no_error_log: bool = True) -> datetime:
command_result = self.run("-b", no_error_log=no_error_log)