Skip to content

Commit fd0bf1a

Browse files
Display the output of lsblk in system_info (#129)
1 parent 01869c6 commit fd0bf1a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

alts/worker/runners/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@
7474
THIRD_PARTY_SECTION_NAME,
7575
)
7676
TF_INIT_LOCK_PATH = '/tmp/tf_init_lock'
77-
BASE_SYSTEM_INFO_COMMANDS = {
77+
BASE_SYSTEM_INFO_COMMANDS: Dict[str, Tuple[str, ...]] = {
78+
'List of block devices': ('lsblk',),
7879
'Current disk space usage': ('df', '-h'),
7980
'Kernel version': ('uname', '-a'),
8081
'Environment IP': ('ip', 'a'),

0 commit comments

Comments
 (0)