kanrisuru 0.12.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -1
- data/README.md +5 -5
- data/lib/kanrisuru/command.rb +10 -0
- data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
- data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
- data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands.rb +14 -0
- data/lib/kanrisuru/core/apt/parser.rb +6 -0
- data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
- data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
- data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
- data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
- data/lib/kanrisuru/core/apt/types.rb +36 -0
- data/lib/kanrisuru/core/apt.rb +4 -284
- data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
- data/lib/kanrisuru/core/archive/commands.rb +3 -0
- data/lib/kanrisuru/core/archive/types.rb +9 -0
- data/lib/kanrisuru/core/archive.rb +3 -121
- data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
- data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
- data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
- data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/parser.rb +6 -0
- data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
- data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
- data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +5 -290
- data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
- data/lib/kanrisuru/core/dmi/commands.rb +3 -0
- data/lib/kanrisuru/core/dmi/parser.rb +3 -0
- data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
- data/lib/kanrisuru/core/dmi/types.rb +361 -0
- data/lib/kanrisuru/core/dmi.rb +4 -522
- data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
- data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
- data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
- data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
- data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
- data/lib/kanrisuru/core/file/commands.rb +29 -0
- data/lib/kanrisuru/core/file/parser.rb +3 -0
- data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
- data/lib/kanrisuru/core/file/types.rb +9 -0
- data/lib/kanrisuru/core/file.rb +4 -312
- data/lib/kanrisuru/core/find/commands/find.rb +97 -0
- data/lib/kanrisuru/core/find/commands.rb +3 -0
- data/lib/kanrisuru/core/find/constants.rb +9 -0
- data/lib/kanrisuru/core/find/parser.rb +3 -0
- data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
- data/lib/kanrisuru/core/find/types.rb +9 -0
- data/lib/kanrisuru/core/find.rb +5 -97
- data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
- data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
- data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
- data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
- data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
- data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
- data/lib/kanrisuru/core/group/commands.rb +8 -0
- data/lib/kanrisuru/core/group/parser.rb +4 -0
- data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
- data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
- data/lib/kanrisuru/core/group/types.rb +10 -0
- data/lib/kanrisuru/core/group.rb +4 -81
- data/lib/kanrisuru/core/ip/commands/address.rb +86 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +54 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +116 -0
- data/lib/kanrisuru/core/ip/commands/link_set_opts.rb +61 -0
- data/lib/kanrisuru/core/ip/commands/link_type_opts.rb +313 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +42 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +72 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +152 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +57 -0
- data/lib/kanrisuru/core/ip/commands.rb +26 -0
- data/lib/kanrisuru/core/ip/constants.rb +25 -0
- data/lib/kanrisuru/core/ip/parser.rb +11 -0
- data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
- data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
- data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
- data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
- data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
- data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
- data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
- data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
- data/lib/kanrisuru/core/ip/parsers/version.rb +15 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +15 -1002
- data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
- data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
- data/lib/kanrisuru/core/mount/commands.rb +49 -0
- data/lib/kanrisuru/core/mount.rb +2 -125
- data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
- data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
- data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
- data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
- data/lib/kanrisuru/core/path/commands/which.rb +19 -0
- data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
- data/lib/kanrisuru/core/path/commands.rb +8 -0
- data/lib/kanrisuru/core/path/parser.rb +4 -0
- data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
- data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
- data/lib/kanrisuru/core/path/types.rb +12 -0
- data/lib/kanrisuru/core/path.rb +4 -121
- data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
- data/lib/kanrisuru/core/socket/commands.rb +3 -0
- data/lib/kanrisuru/core/socket/constants.rb +29 -0
- data/lib/kanrisuru/core/socket/parser.rb +3 -0
- data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
- data/lib/kanrisuru/core/socket/types.rb +18 -0
- data/lib/kanrisuru/core/socket.rb +5 -164
- data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
- data/lib/kanrisuru/core/stat/commands.rb +3 -0
- data/lib/kanrisuru/core/stat/parser.rb +3 -0
- data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
- data/lib/kanrisuru/core/stat/types.rb +14 -0
- data/lib/kanrisuru/core/stat.rb +4 -81
- data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
- data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
- data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
- data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
- data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
- data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
- data/lib/kanrisuru/core/stream/commands.rb +27 -0
- data/lib/kanrisuru/core/stream/parser.rb +4 -0
- data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
- data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
- data/lib/kanrisuru/core/stream.rb +3 -104
- data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
- data/lib/kanrisuru/core/system/commands/free.rb +25 -0
- data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
- data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
- data/lib/kanrisuru/core/system/commands/last.rb +31 -0
- data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
- data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
- data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
- data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
- data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
- data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
- data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
- data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
- data/lib/kanrisuru/core/system/commands/w.rb +24 -0
- data/lib/kanrisuru/core/system/commands.rb +34 -0
- data/lib/kanrisuru/core/system/parser.rb +11 -0
- data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
- data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
- data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
- data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
- data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
- data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
- data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
- data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
- data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
- data/lib/kanrisuru/core/system/types.rb +108 -0
- data/lib/kanrisuru/core/system.rb +4 -687
- data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
- data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
- data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
- data/lib/kanrisuru/core/transfer/commands.rb +5 -0
- data/lib/kanrisuru/core/transfer/constants.rb +10 -0
- data/lib/kanrisuru/core/transfer.rb +3 -199
- data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
- data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
- data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
- data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
- data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
- data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
- data/lib/kanrisuru/core/user/commands.rb +8 -0
- data/lib/kanrisuru/core/user/parser.rb +4 -0
- data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
- data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
- data/lib/kanrisuru/core/user/types.rb +11 -0
- data/lib/kanrisuru/core/user.rb +4 -182
- data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
- data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
- data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
- data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
- data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/yum/commands.rb +39 -0
- data/lib/kanrisuru/core/yum/parser.rb +7 -0
- data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
- data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
- data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
- data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
- data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
- data/lib/kanrisuru/core/yum/types.rb +41 -0
- data/lib/kanrisuru/core/yum.rb +4 -347
- data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
- data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
- data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
- data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
- data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
- data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
- data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
- data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
- data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
- data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
- data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
- data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands.rb +109 -0
- data/lib/kanrisuru/core/zypper/constants.rb +19 -0
- data/lib/kanrisuru/core/zypper/parser.rb +11 -0
- data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
- data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
- data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
- data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
- data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
- data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
- data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
- data/lib/kanrisuru/core/zypper/types.rb +88 -0
- data/lib/kanrisuru/core/zypper.rb +5 -998
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/ip/ip_address_label_spec.rb +81 -0
- data/spec/functional/core/ip/ip_address_spec.rb +95 -0
- data/spec/functional/core/ip/ip_link_spec.rb +814 -0
- data/spec/functional/core/ip/ip_maddress_spec.rb +78 -0
- data/spec/functional/core/ip/ip_neighbour_spec.rb +119 -0
- data/spec/functional/core/ip/ip_route_spec.rb +174 -0
- data/spec/functional/core/ip/ip_rule_spec.rb +75 -0
- data/spec/functional/core/ip/ip_spec.rb +27 -0
- data/spec/functional/result_spec.rb +150 -0
- data/spec/{hosts.json → helper/hosts.json} +0 -0
- data/spec/helper/simplecov.rb +21 -0
- data/spec/helper/test_hosts.rb +3 -3
- data/spec/integration/core/apt/debian_spec.rb +9 -0
- data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
- data/spec/integration/core/archive/centos_spec.rb +9 -0
- data/spec/integration/core/archive/debian_spec.rb +9 -0
- data/spec/integration/core/archive/fedora_spec.rb +9 -0
- data/spec/integration/core/archive/opensuse_spec.rb +9 -0
- data/spec/integration/core/archive/rhel_spec.rb +9 -0
- data/spec/integration/core/archive/sles_spec.rb +9 -0
- data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
- data/spec/integration/core/disk/centos_spec.rb +9 -0
- data/spec/integration/core/disk/debian_spec.rb +9 -0
- data/spec/integration/core/disk/fedora_spec.rb +9 -0
- data/spec/integration/core/disk/opensuse_spec.rb +9 -0
- data/spec/integration/core/disk/rhel_spec.rb +9 -0
- data/spec/integration/core/disk/sles_spec.rb +9 -0
- data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
- data/spec/integration/core/dmi/centos_spec.rb +9 -0
- data/spec/integration/core/dmi/debian_spec.rb +9 -0
- data/spec/integration/core/dmi/fedora_spec.rb +9 -0
- data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
- data/spec/integration/core/dmi/rhel_spec.rb +9 -0
- data/spec/integration/core/dmi/sles_spec.rb +9 -0
- data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
- data/spec/integration/core/file/centos_spec.rb +9 -0
- data/spec/integration/core/file/debian_spec.rb +9 -0
- data/spec/integration/core/file/fedora_spec.rb +9 -0
- data/spec/integration/core/file/opensuse_spec.rb +9 -0
- data/spec/integration/core/file/rhel_spec.rb +9 -0
- data/spec/integration/core/file/sles_spec.rb +9 -0
- data/spec/integration/core/file/ubuntu_spec.rb +9 -0
- data/spec/integration/core/find/centos_spec.rb +9 -0
- data/spec/integration/core/find/debian_spec.rb +9 -0
- data/spec/integration/core/find/fedora_spec.rb +9 -0
- data/spec/integration/core/find/opensuse_spec.rb +9 -0
- data/spec/integration/core/find/rhel_spec.rb +9 -0
- data/spec/integration/core/find/sles_spec.rb +9 -0
- data/spec/integration/core/find/ubuntu_spec.rb +9 -0
- data/spec/integration/core/group/centos_spec.rb +9 -0
- data/spec/integration/core/group/debian_spec.rb +9 -0
- data/spec/integration/core/group/fedora_spec.rb +9 -0
- data/spec/integration/core/group/opensuse_spec.rb +9 -0
- data/spec/integration/core/group/rhel_spec.rb +9 -0
- data/spec/integration/core/group/sles_spec.rb +9 -0
- data/spec/integration/core/group/ubuntu_spec.rb +9 -0
- data/spec/integration/core/ip/centos_spec.rb +9 -0
- data/spec/integration/core/ip/debian_spec.rb +9 -0
- data/spec/integration/core/ip/fedora_spec.rb +9 -0
- data/spec/integration/core/ip/opensuse_spec.rb +9 -0
- data/spec/integration/core/ip/rhel_spec.rb +9 -0
- data/spec/integration/core/ip/sles_spec.rb +9 -0
- data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
- data/spec/integration/core/path/centos_spec.rb +9 -0
- data/spec/integration/core/path/debian_spec.rb +9 -0
- data/spec/integration/core/path/fedora_spec.rb +9 -0
- data/spec/integration/core/path/opensuse_spec.rb +9 -0
- data/spec/integration/core/path/rhel_spec.rb +9 -0
- data/spec/integration/core/path/sles_spec.rb +9 -0
- data/spec/integration/core/path/ubuntu_spec.rb +9 -0
- data/spec/integration/core/socket/centos_spec.rb +9 -0
- data/spec/integration/core/socket/debian_spec.rb +9 -0
- data/spec/integration/core/socket/fedora_spec.rb +9 -0
- data/spec/integration/core/socket/opensuse_spec.rb +9 -0
- data/spec/integration/core/socket/rhel_spec.rb +9 -0
- data/spec/integration/core/socket/sles_spec.rb +9 -0
- data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stat/centos_spec.rb +9 -0
- data/spec/integration/core/stat/debian_spec.rb +9 -0
- data/spec/integration/core/stat/fedora_spec.rb +9 -0
- data/spec/integration/core/stat/opensuse_spec.rb +9 -0
- data/spec/integration/core/stat/rhel_spec.rb +9 -0
- data/spec/integration/core/stat/sles_spec.rb +9 -0
- data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stream/centos_spec.rb +9 -0
- data/spec/integration/core/stream/debian_spec.rb +9 -0
- data/spec/integration/core/stream/fedora_spec.rb +9 -0
- data/spec/integration/core/stream/opensuse_spec.rb +9 -0
- data/spec/integration/core/stream/rhel_spec.rb +9 -0
- data/spec/integration/core/stream/sles_spec.rb +9 -0
- data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
- data/spec/integration/core/system/centos_spec.rb +9 -0
- data/spec/integration/core/system/debian_spec.rb +9 -0
- data/spec/integration/core/system/fedora_spec.rb +9 -0
- data/spec/integration/core/system/opensuse_spec.rb +9 -0
- data/spec/integration/core/system/rhel_spec.rb +9 -0
- data/spec/integration/core/system/sles_spec.rb +9 -0
- data/spec/integration/core/system/ubuntu_spec.rb +9 -0
- data/spec/integration/core/transfer/centos_spec.rb +9 -0
- data/spec/integration/core/transfer/debian_spec.rb +9 -0
- data/spec/integration/core/transfer/fedora_spec.rb +9 -0
- data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
- data/spec/integration/core/transfer/rhel_spec.rb +9 -0
- data/spec/integration/core/transfer/sles_spec.rb +9 -0
- data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
- data/spec/integration/core/user/centos_spec.rb +9 -0
- data/spec/integration/core/user/debian_spec.rb +9 -0
- data/spec/integration/core/user/fedora_spec.rb +9 -0
- data/spec/integration/core/user/opensuse_spec.rb +9 -0
- data/spec/integration/core/user/rhel_spec.rb +9 -0
- data/spec/integration/core/user/sles_spec.rb +9 -0
- data/spec/integration/core/user/ubuntu_spec.rb +9 -0
- data/spec/integration/core/yum/centos_spec.rb +9 -0
- data/spec/integration/core/yum/fedora_spec.rb +9 -0
- data/spec/integration/core/yum/rhel_spec.rb +9 -0
- data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
- data/spec/integration/core/zypper/sles_spec.rb +9 -0
- data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/cpu/centos_spec.rb +9 -0
- data/spec/integration/remote/cpu/debian_spec.rb +9 -0
- data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
- data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
- data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
- data/spec/integration/remote/cpu/sles_spec.rb +9 -0
- data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/env/centos_spec.rb +9 -0
- data/spec/integration/remote/env/debian_spec.rb +9 -0
- data/spec/integration/remote/env/fedora_spec.rb +9 -0
- data/spec/integration/remote/env/opensuse_spec.rb +9 -0
- data/spec/integration/remote/env/rhel_spec.rb +9 -0
- data/spec/integration/remote/env/sles_spec.rb +9 -0
- data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/fstab/centos_spec.rb +9 -0
- data/spec/integration/remote/fstab/debian_spec.rb +9 -0
- data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
- data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
- data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
- data/spec/integration/remote/fstab/sles_spec.rb +9 -0
- data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/host/centos_spec.rb +9 -0
- data/spec/integration/remote/host/debian_spec.rb +9 -0
- data/spec/integration/remote/host/fedora_spec.rb +9 -0
- data/spec/integration/remote/host/opensuse_spec.rb +9 -0
- data/spec/integration/remote/host/rhel_spec.rb +9 -0
- data/spec/integration/remote/host/sles_spec.rb +9 -0
- data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/memory/centos_spec.rb +9 -0
- data/spec/integration/remote/memory/debian_spec.rb +9 -0
- data/spec/integration/remote/memory/fedora_spec.rb +9 -0
- data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
- data/spec/integration/remote/memory/rhel_spec.rb +9 -0
- data/spec/integration/remote/memory/sles_spec.rb +9 -0
- data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/os/centos_spec.rb +9 -0
- data/spec/integration/remote/os/debian_spec.rb +9 -0
- data/spec/integration/remote/os/fedora_spec.rb +9 -0
- data/spec/integration/remote/os/opensuse_spec.rb +9 -0
- data/spec/integration/remote/os/rhel_spec.rb +9 -0
- data/spec/integration/remote/os/sles_spec.rb +9 -0
- data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
- data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
- data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
- data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
- data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
- data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
- data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
- data/spec/spec_helper.rb +2 -11
- data/spec/support/shared_examples/integration/core/apt.rb +117 -0
- data/spec/support/shared_examples/integration/core/archive.rb +221 -0
- data/spec/support/shared_examples/integration/core/disk.rb +91 -0
- data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
- data/spec/support/shared_examples/integration/core/file.rb +357 -0
- data/spec/support/shared_examples/integration/core/find.rb +50 -0
- data/spec/support/shared_examples/integration/core/group.rb +62 -0
- data/spec/support/shared_examples/integration/core/ip.rb +68 -0
- data/spec/support/shared_examples/integration/core/path.rb +90 -0
- data/spec/support/shared_examples/integration/core/socket.rb +27 -0
- data/spec/support/shared_examples/integration/core/stat.rb +95 -0
- data/spec/support/shared_examples/integration/core/stream.rb +112 -0
- data/spec/support/shared_examples/integration/core/system.rb +155 -0
- data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
- data/spec/support/shared_examples/integration/core/user.rb +72 -0
- data/spec/support/shared_examples/integration/core/yum.rb +115 -0
- data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
- data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
- data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
- data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
- data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
- data/spec/support/shared_examples/integration/remote/host.rb +65 -0
- data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
- data/spec/support/shared_examples/integration/remote/os.rb +60 -0
- data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +425 -29
- data/spec/integration/core/apt_spec.rb +0 -119
- data/spec/integration/core/archive_spec.rb +0 -223
- data/spec/integration/core/disk_spec.rb +0 -93
- data/spec/integration/core/dmi_spec.rb +0 -36
- data/spec/integration/core/file_spec.rb +0 -359
- data/spec/integration/core/find_spec.rb +0 -52
- data/spec/integration/core/group_spec.rb +0 -64
- data/spec/integration/core/ip_spec.rb +0 -70
- data/spec/integration/core/path_spec.rb +0 -92
- data/spec/integration/core/socket_spec.rb +0 -29
- data/spec/integration/core/stat_spec.rb +0 -97
- data/spec/integration/core/stream_spec.rb +0 -114
- data/spec/integration/core/system_spec.rb +0 -142
- data/spec/integration/core/transfer_spec.rb +0 -103
- data/spec/integration/core/user_spec.rb +0 -74
- data/spec/integration/core/yum_spec.rb +0 -117
- data/spec/integration/core/zypper_spec.rb +0 -198
- data/spec/integration/remote/cpu_spec.rb +0 -40
- data/spec/integration/remote/env_spec.rb +0 -35
- data/spec/integration/remote/fstab_spec.rb +0 -91
- data/spec/integration/remote/host_spec.rb +0 -67
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -62
- data/spec/integration/remote/remote_file_spec.rb +0 -174
- data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
def lsblk(opts = {})
|
7
|
+
all = opts[:all]
|
8
|
+
nodeps = opts[:nodeps]
|
9
|
+
paths = opts[:paths]
|
10
|
+
|
11
|
+
command = Kanrisuru::Command.new('lsblk')
|
12
|
+
|
13
|
+
version = lsblk_version
|
14
|
+
|
15
|
+
## lsblk after version 2.26 handles json parsing.
|
16
|
+
## TODO: parse nested children for earlier version of lsblk
|
17
|
+
if version >= 2.27
|
18
|
+
command.append_flag('--json') if version >= 2.27
|
19
|
+
else
|
20
|
+
command.append_flag('-i')
|
21
|
+
command.append_flag('-P')
|
22
|
+
command.append_flag('--noheadings')
|
23
|
+
end
|
24
|
+
|
25
|
+
command.append_flag('-a', all)
|
26
|
+
command.append_flag('-p', paths)
|
27
|
+
command.append_flag('-d', nodeps)
|
28
|
+
|
29
|
+
command.append_arg('-o', 'NAME,FSTYPE,MAJ:MIN,MOUNTPOINT,SIZE,UUID,RO,RM,OWNER,GROUP,MODE,TYPE')
|
30
|
+
execute(command)
|
31
|
+
|
32
|
+
Kanrisuru::Result.new(command) do |cmd|
|
33
|
+
Parser::Lsblk.parse(cmd, version)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
private
|
38
|
+
|
39
|
+
def lsblk_version
|
40
|
+
command = Kanrisuru::Command.new('lsblk --version')
|
41
|
+
execute(command)
|
42
|
+
|
43
|
+
version = 0.00
|
44
|
+
regex = Regexp.new(/\d+(?:[,.]\d+)?/)
|
45
|
+
|
46
|
+
raise 'lsblk command not found' if command.failure?
|
47
|
+
|
48
|
+
version = command.to_s.scan(regex)[0].to_f unless regex.match(command.to_s).nil?
|
49
|
+
|
50
|
+
version
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
module Parser
|
7
|
+
class Blkid
|
8
|
+
class << self
|
9
|
+
def parse(command, mode)
|
10
|
+
return command.to_s if mode == 'search'
|
11
|
+
|
12
|
+
lines = command.to_a
|
13
|
+
|
14
|
+
devices = []
|
15
|
+
current_device = nil
|
16
|
+
|
17
|
+
lines.each do |line|
|
18
|
+
value = line.split('=')[1]
|
19
|
+
|
20
|
+
if line =~ /^DEVNAME=/
|
21
|
+
current_device = Kanrisuru::Core::Disk::BlkidDevice.new(value)
|
22
|
+
elsif line =~ /^UUID=/
|
23
|
+
current_device.uuid = value
|
24
|
+
elsif line =~ /^LABEL=/
|
25
|
+
current_device.label = value
|
26
|
+
elsif line =~ /^TYPE=/
|
27
|
+
current_device.type = value
|
28
|
+
elsif line =~ /^LABEL_FATBOOT=/
|
29
|
+
current_device.label_fatboot = value
|
30
|
+
elsif line =~ /^PARTUUID=/
|
31
|
+
current_device.part_uuid = value
|
32
|
+
elsif line =~ /^UUID_SUB=/
|
33
|
+
current_device.uuid_sub = value
|
34
|
+
elsif line =~ /^USAGE=/
|
35
|
+
current_device.usage = value
|
36
|
+
elsif line =~ /^VERSION=/
|
37
|
+
current_device.version = value.to_f
|
38
|
+
elsif line =~ /^MINIMUM_IO_SIZE=/
|
39
|
+
current_device.minimum_io_size = value.to_i
|
40
|
+
elsif line =~ /^PHYSICAL_SECTOR_SIZE=/
|
41
|
+
current_device.physical_sector_size = value.to_i
|
42
|
+
elsif line =~ /^LOGICAL_SECTOR_SIZE=/
|
43
|
+
current_device.logical_sector_size = value.to_i
|
44
|
+
elsif line =~ /^PART_ENTRY_SCHEME=/
|
45
|
+
current_device.part_entry_scheme = value
|
46
|
+
elsif line =~ /^PART_ENTRY_UUID=/
|
47
|
+
current_device.part_entry_uuid = value
|
48
|
+
elsif line =~ /^PART_ENTRY_DISK=/
|
49
|
+
current_device.part_entry_disk = value
|
50
|
+
elsif line =~ /^PART_ENTRY_NUMBER=/
|
51
|
+
current_device.part_entry_number = value.to_i
|
52
|
+
elsif line =~ /^PART_ENTRY_OFFSET=/
|
53
|
+
current_device.part_entry_offset = value.to_i
|
54
|
+
elsif line =~ /^PART_ENTRY_SIZE=/
|
55
|
+
current_device.part_entry_size = value.to_i
|
56
|
+
elsif line =~ /^PART_ENTRY_TYPE=/
|
57
|
+
current_device.part_entry_type = value
|
58
|
+
elsif Kanrisuru::Util.blank?(line)
|
59
|
+
devices << current_device
|
60
|
+
current_device = nil
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
devices << current_device if Kanrisuru::Util.present?(current_device)
|
65
|
+
devices
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
module Parser
|
7
|
+
class Df
|
8
|
+
class << self
|
9
|
+
def parse(command)
|
10
|
+
items = []
|
11
|
+
rows = command.to_a
|
12
|
+
rows.each.with_index do |row, index|
|
13
|
+
next if index.zero?
|
14
|
+
|
15
|
+
values = row.split
|
16
|
+
|
17
|
+
items << Kanrisuru::Core::Disk::DiskFree.new(
|
18
|
+
values[0],
|
19
|
+
values[1],
|
20
|
+
values[2].to_i,
|
21
|
+
values[3].to_i,
|
22
|
+
values[4].to_i,
|
23
|
+
values[5]
|
24
|
+
)
|
25
|
+
end
|
26
|
+
items
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
module Parser
|
7
|
+
class Du
|
8
|
+
class << self
|
9
|
+
def parse(command, convert)
|
10
|
+
lines = command.to_a
|
11
|
+
|
12
|
+
lines.map do |line|
|
13
|
+
values = line.split
|
14
|
+
size = values[0].to_i
|
15
|
+
size = convert ? Kanrisuru::Util::Bits.convert_bytes(size, :byte, convert) : size
|
16
|
+
|
17
|
+
Kanrisuru::Core::Disk::DiskUsage.new(size, values[1])
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
module Parser
|
7
|
+
class Lsblk
|
8
|
+
class << self
|
9
|
+
def parse(command, version)
|
10
|
+
if version >= 2.27
|
11
|
+
result = command.to_json
|
12
|
+
devices = result['blockdevices']
|
13
|
+
build_lsblk_devices_json(devices)
|
14
|
+
else
|
15
|
+
build_lsblk_devices_text(command.to_a)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def build_lsblk_devices_text(lines)
|
20
|
+
devices = []
|
21
|
+
|
22
|
+
lines.each do |line|
|
23
|
+
values = line.split
|
24
|
+
|
25
|
+
current_device = Kanrisuru::Core::Disk::LsblkDevice.new
|
26
|
+
|
27
|
+
values.each do |value|
|
28
|
+
key, value = value.split('=')
|
29
|
+
value = value.gsub(/"/, '')
|
30
|
+
|
31
|
+
case key
|
32
|
+
when 'NAME'
|
33
|
+
current_device.name = value
|
34
|
+
when 'FSTYPE'
|
35
|
+
current_device.fs_type = value
|
36
|
+
when 'MAJ:MIN'
|
37
|
+
maj, min = value.split(':')
|
38
|
+
current_device.maj_dev = maj ? maj.to_i : nil
|
39
|
+
current_device.min_dev = min ? min.to_i : nil
|
40
|
+
when 'MOUNTPOINT'
|
41
|
+
current_device.mount_point = value
|
42
|
+
when 'SIZE'
|
43
|
+
current_device.fsize = value
|
44
|
+
when 'UUID'
|
45
|
+
current_device.uuid = value
|
46
|
+
when 'RO'
|
47
|
+
current_device.readonly_device = value
|
48
|
+
when 'RM'
|
49
|
+
current_device.removable_device = value
|
50
|
+
when 'OWNER'
|
51
|
+
current_device.owner = value
|
52
|
+
when 'GROUP'
|
53
|
+
current_device.group = value
|
54
|
+
when 'MODE'
|
55
|
+
current_device.mode = value
|
56
|
+
when 'TYPE'
|
57
|
+
current_device.type = value
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
devices << current_device
|
62
|
+
end
|
63
|
+
|
64
|
+
devices
|
65
|
+
end
|
66
|
+
|
67
|
+
def build_lsblk_devices_json(devices)
|
68
|
+
devices.map do |device|
|
69
|
+
children = (build_lsblk_devices_json(device['children']) if device.key?('children'))
|
70
|
+
|
71
|
+
maj_min = device['maj:min']
|
72
|
+
|
73
|
+
Kanrisuru::Core::Disk::LsblkDevice.new(
|
74
|
+
device['name'],
|
75
|
+
maj_min ? maj_min.split(':')[0].to_i : nil,
|
76
|
+
maj_min ? maj_min.split(':')[1].to_i : nil,
|
77
|
+
device['rm'],
|
78
|
+
device['ro'],
|
79
|
+
device['owner'],
|
80
|
+
device['group'],
|
81
|
+
device['mode'],
|
82
|
+
device['size'],
|
83
|
+
device['type'],
|
84
|
+
device['mountpoint'],
|
85
|
+
device['fstype'],
|
86
|
+
device['uuid'],
|
87
|
+
children
|
88
|
+
)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
DiskUsage = Struct.new(:fsize, :path)
|
7
|
+
DiskFree = Struct.new(:file_system, :type, :total, :used, :capacity, :mount)
|
8
|
+
LsblkDevice = Struct.new(
|
9
|
+
:name, :maj_dev, :min_dev, :removable_device, :readonly_device, :owner, :group,
|
10
|
+
:mode, :fsize, :type, :mount_point, :fs_type, :uuid, :children
|
11
|
+
)
|
12
|
+
|
13
|
+
BlkidDevice = Struct.new(
|
14
|
+
:name, :label, :uuid, :type, :uuid_sub, :label_fatboot, :version, :usage,
|
15
|
+
:part_uuid, :part_entry_scheme, :part_entry_uuid, :part_entry_type,
|
16
|
+
:part_entry_number, :part_entry_offset, :part_entry_size, :part_entry_disk,
|
17
|
+
:minimum_io_size, :physical_sector_size, :logical_sector_size
|
18
|
+
)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/kanrisuru/core/disk.rb
CHANGED
@@ -2,304 +2,19 @@
|
|
2
2
|
|
3
3
|
require 'json'
|
4
4
|
|
5
|
+
require_relative 'disk/types'
|
6
|
+
require_relative 'disk/parser'
|
7
|
+
require_relative 'disk/commands'
|
8
|
+
|
5
9
|
module Kanrisuru
|
6
10
|
module Core
|
7
11
|
module Disk
|
8
12
|
extend OsPackage::Define
|
9
13
|
|
14
|
+
os_define :linux, :blkid
|
10
15
|
os_define :linux, :df
|
11
16
|
os_define :linux, :du
|
12
|
-
os_define :linux, :blkid
|
13
17
|
os_define :linux, :lsblk
|
14
|
-
|
15
|
-
DiskUsage = Struct.new(:fsize, :path)
|
16
|
-
DiskFree = Struct.new(:file_system, :type, :total, :used, :capacity, :mount)
|
17
|
-
LsblkDevice = Struct.new(
|
18
|
-
:name, :maj_dev, :min_dev, :removable_device, :readonly_device, :owner, :group,
|
19
|
-
:mode, :fsize, :type, :mount_point, :fs_type, :uuid, :children
|
20
|
-
)
|
21
|
-
|
22
|
-
BlkidDevice = Struct.new(
|
23
|
-
:name, :label, :uuid, :type, :uuid_sub, :label_fatboot, :version, :usage,
|
24
|
-
:part_uuid, :part_entry_scheme, :part_entry_uuid, :part_entry_type,
|
25
|
-
:part_entry_number, :part_entry_offset, :part_entry_size, :part_entry_disk,
|
26
|
-
:minimum_io_size, :physical_sector_size, :logical_sector_size
|
27
|
-
)
|
28
|
-
|
29
|
-
def du(opts = {})
|
30
|
-
path = opts[:path]
|
31
|
-
summarize = opts[:summarize]
|
32
|
-
convert = opts[:convert]
|
33
|
-
|
34
|
-
command = Kanrisuru::Command.new('du')
|
35
|
-
command.append_flag('-s', summarize)
|
36
|
-
command << path if Kanrisuru::Util.present?(path)
|
37
|
-
command | "awk '{print \\$1, \\$2}'"
|
38
|
-
|
39
|
-
execute_shell(command)
|
40
|
-
|
41
|
-
Kanrisuru::Result.new(command) do |cmd|
|
42
|
-
lines = cmd.to_a
|
43
|
-
|
44
|
-
lines.map do |line|
|
45
|
-
values = line.split
|
46
|
-
size = values[0].to_i
|
47
|
-
size = convert ? Kanrisuru::Util::Bits.convert_bytes(size, :byte, convert) : size
|
48
|
-
|
49
|
-
DiskUsage.new(size, values[1])
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
def df(opts = {})
|
55
|
-
path = opts[:path]
|
56
|
-
inodes = opts[:inodes]
|
57
|
-
|
58
|
-
command = Kanrisuru::Command.new('df')
|
59
|
-
|
60
|
-
command.append_flag('-PT')
|
61
|
-
command.append_flag('-i', inodes)
|
62
|
-
|
63
|
-
command << path if Kanrisuru::Util.present?(path)
|
64
|
-
command | "awk '{print $1, $2, $3, $5, $6, $7}'"
|
65
|
-
|
66
|
-
execute(command)
|
67
|
-
|
68
|
-
Kanrisuru::Result.new(command) do |cmd|
|
69
|
-
items = []
|
70
|
-
rows = cmd.to_a
|
71
|
-
rows.each.with_index do |row, index|
|
72
|
-
next if index.zero?
|
73
|
-
|
74
|
-
values = row.split
|
75
|
-
|
76
|
-
items << DiskFree.new(
|
77
|
-
values[0],
|
78
|
-
values[1],
|
79
|
-
values[2].to_i,
|
80
|
-
values[3].to_i,
|
81
|
-
values[4].to_i,
|
82
|
-
values[5]
|
83
|
-
)
|
84
|
-
end
|
85
|
-
items
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
def blkid(opts = {})
|
90
|
-
label = opts[:label]
|
91
|
-
uuid = opts[:uuid]
|
92
|
-
device = opts[:device]
|
93
|
-
|
94
|
-
mode = ''
|
95
|
-
command = Kanrisuru::Command.new('blkid')
|
96
|
-
|
97
|
-
if Kanrisuru::Util.present?(label) || Kanrisuru::Util.present?(uuid)
|
98
|
-
mode = 'search'
|
99
|
-
command.append_arg('-L', opts[:label])
|
100
|
-
command.append_arg('-U', opts[:uuid])
|
101
|
-
elsif Kanrisuru::Util.present?(device)
|
102
|
-
mode = 'device'
|
103
|
-
command.append_arg('-pio', 'export')
|
104
|
-
command << device
|
105
|
-
else
|
106
|
-
mode = 'list'
|
107
|
-
command.append_arg('-o', 'export')
|
108
|
-
end
|
109
|
-
|
110
|
-
execute_shell(command)
|
111
|
-
|
112
|
-
Kanrisuru::Result.new(command) do |cmd|
|
113
|
-
case mode
|
114
|
-
when 'search'
|
115
|
-
cmd.to_s
|
116
|
-
else
|
117
|
-
lines = cmd.to_a
|
118
|
-
blkid_devices(lines)
|
119
|
-
end
|
120
|
-
end
|
121
|
-
end
|
122
|
-
|
123
|
-
def lsblk(opts = {})
|
124
|
-
all = opts[:all]
|
125
|
-
nodeps = opts[:nodeps]
|
126
|
-
paths = opts[:paths]
|
127
|
-
|
128
|
-
command = Kanrisuru::Command.new('lsblk')
|
129
|
-
|
130
|
-
version = lsblk_version
|
131
|
-
|
132
|
-
## lsblk after version 2.26 handles json parsing.
|
133
|
-
## TODO: parse nested children for earlier version of lsblk
|
134
|
-
if version >= 2.27
|
135
|
-
command.append_flag('--json') if version >= 2.27
|
136
|
-
else
|
137
|
-
command.append_flag('-i')
|
138
|
-
command.append_flag('-P')
|
139
|
-
command.append_flag('--noheadings')
|
140
|
-
end
|
141
|
-
|
142
|
-
command.append_flag('-a', all)
|
143
|
-
command.append_flag('-p', paths)
|
144
|
-
command.append_flag('-d', nodeps)
|
145
|
-
|
146
|
-
command.append_arg('-o', 'NAME,FSTYPE,MAJ:MIN,MOUNTPOINT,SIZE,UUID,RO,RM,OWNER,GROUP,MODE,TYPE')
|
147
|
-
execute(command)
|
148
|
-
|
149
|
-
Kanrisuru::Result.new(command) do |cmd|
|
150
|
-
if version >= 2.27
|
151
|
-
result = cmd.to_json
|
152
|
-
devices = result['blockdevices']
|
153
|
-
build_lsblk_devices_json(devices)
|
154
|
-
else
|
155
|
-
build_lsblk_devices_text(cmd.to_a)
|
156
|
-
end
|
157
|
-
end
|
158
|
-
end
|
159
|
-
|
160
|
-
private
|
161
|
-
|
162
|
-
def blkid_devices(lines)
|
163
|
-
devices = []
|
164
|
-
current_device = nil
|
165
|
-
|
166
|
-
lines.each do |line|
|
167
|
-
value = line.split('=')[1]
|
168
|
-
|
169
|
-
if line =~ /^DEVNAME=/
|
170
|
-
current_device = BlkidDevice.new(value)
|
171
|
-
elsif line =~ /^UUID=/
|
172
|
-
current_device.uuid = value
|
173
|
-
elsif line =~ /^LABEL=/
|
174
|
-
current_device.label = value
|
175
|
-
elsif line =~ /^TYPE=/
|
176
|
-
current_device.type = value
|
177
|
-
elsif line =~ /^LABEL_FATBOOT=/
|
178
|
-
current_device.label_fatboot = value
|
179
|
-
elsif line =~ /^PARTUUID=/
|
180
|
-
current_device.part_uuid = value
|
181
|
-
elsif line =~ /^UUID_SUB=/
|
182
|
-
current_device.uuid_sub = value
|
183
|
-
elsif line =~ /^USAGE=/
|
184
|
-
current_device.usage = value
|
185
|
-
elsif line =~ /^VERSION=/
|
186
|
-
current_device.version = value.to_f
|
187
|
-
elsif line =~ /^MINIMUM_IO_SIZE=/
|
188
|
-
current_device.minimum_io_size = value.to_i
|
189
|
-
elsif line =~ /^PHYSICAL_SECTOR_SIZE=/
|
190
|
-
current_device.physical_sector_size = value.to_i
|
191
|
-
elsif line =~ /^LOGICAL_SECTOR_SIZE=/
|
192
|
-
current_device.logical_sector_size = value.to_i
|
193
|
-
elsif line =~ /^PART_ENTRY_SCHEME=/
|
194
|
-
current_device.part_entry_scheme = value
|
195
|
-
elsif line =~ /^PART_ENTRY_UUID=/
|
196
|
-
current_device.part_entry_uuid = value
|
197
|
-
elsif line =~ /^PART_ENTRY_DISK=/
|
198
|
-
current_device.part_entry_disk = value
|
199
|
-
elsif line =~ /^PART_ENTRY_NUMBER=/
|
200
|
-
current_device.part_entry_number = value.to_i
|
201
|
-
elsif line =~ /^PART_ENTRY_OFFSET=/
|
202
|
-
current_device.part_entry_offset = value.to_i
|
203
|
-
elsif line =~ /^PART_ENTRY_SIZE=/
|
204
|
-
current_device.part_entry_size = value.to_i
|
205
|
-
elsif line =~ /^PART_ENTRY_TYPE=/
|
206
|
-
current_device.part_entry_type = value
|
207
|
-
elsif Kanrisuru::Util.blank?(line)
|
208
|
-
devices << current_device
|
209
|
-
current_device = nil
|
210
|
-
end
|
211
|
-
end
|
212
|
-
|
213
|
-
devices << current_device if Kanrisuru::Util.present?(current_device)
|
214
|
-
devices
|
215
|
-
end
|
216
|
-
|
217
|
-
def lsblk_version
|
218
|
-
command = Kanrisuru::Command.new('lsblk --version')
|
219
|
-
execute(command)
|
220
|
-
|
221
|
-
version = 0.00
|
222
|
-
regex = Regexp.new(/\d+(?:[,.]\d+)?/)
|
223
|
-
|
224
|
-
raise 'lsblk command not found' if command.failure?
|
225
|
-
|
226
|
-
version = command.to_s.scan(regex)[0].to_f unless regex.match(command.to_s).nil?
|
227
|
-
|
228
|
-
version
|
229
|
-
end
|
230
|
-
|
231
|
-
def build_lsblk_devices_text(lines)
|
232
|
-
devices = []
|
233
|
-
|
234
|
-
lines.each do |line|
|
235
|
-
values = line.split
|
236
|
-
|
237
|
-
current_device = LsblkDevice.new
|
238
|
-
|
239
|
-
values.each do |value|
|
240
|
-
key, value = value.split('=')
|
241
|
-
value = value.gsub(/"/, '')
|
242
|
-
|
243
|
-
case key
|
244
|
-
when 'NAME'
|
245
|
-
current_device.name = value
|
246
|
-
when 'FSTYPE'
|
247
|
-
current_device.fs_type = value
|
248
|
-
when 'MAJ:MIN'
|
249
|
-
maj, min = value.split(':')
|
250
|
-
current_device.maj_dev = maj ? maj.to_i : nil
|
251
|
-
current_device.min_dev = min ? min.to_i : nil
|
252
|
-
when 'MOUNTPOINT'
|
253
|
-
current_device.mount_point = value
|
254
|
-
when 'SIZE'
|
255
|
-
current_device.fsize = value
|
256
|
-
when 'UUID'
|
257
|
-
current_device.uuid = value
|
258
|
-
when 'RO'
|
259
|
-
current_device.readonly_device = value
|
260
|
-
when 'RM'
|
261
|
-
current_device.removable_device = value
|
262
|
-
when 'OWNER'
|
263
|
-
current_device.owner = value
|
264
|
-
when 'GROUP'
|
265
|
-
current_device.group = value
|
266
|
-
when 'MODE'
|
267
|
-
current_device.mode = value
|
268
|
-
when 'TYPE'
|
269
|
-
current_device.type = value
|
270
|
-
end
|
271
|
-
end
|
272
|
-
|
273
|
-
devices << current_device
|
274
|
-
end
|
275
|
-
|
276
|
-
devices
|
277
|
-
end
|
278
|
-
|
279
|
-
def build_lsblk_devices_json(devices)
|
280
|
-
devices.map do |device|
|
281
|
-
children = (build_lsblk_devices_json(device['children']) if device.key?('children'))
|
282
|
-
|
283
|
-
maj_min = device['maj:min']
|
284
|
-
|
285
|
-
LsblkDevice.new(
|
286
|
-
device['name'],
|
287
|
-
maj_min ? maj_min.split(':')[0].to_i : nil,
|
288
|
-
maj_min ? maj_min.split(':')[1].to_i : nil,
|
289
|
-
device['rm'],
|
290
|
-
device['ro'],
|
291
|
-
device['owner'],
|
292
|
-
device['group'],
|
293
|
-
device['mode'],
|
294
|
-
device['size'],
|
295
|
-
device['type'],
|
296
|
-
device['mountpoint'],
|
297
|
-
device['fstype'],
|
298
|
-
device['uuid'],
|
299
|
-
children
|
300
|
-
)
|
301
|
-
end
|
302
|
-
end
|
303
18
|
end
|
304
19
|
end
|
305
20
|
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Dmi
|
6
|
+
def dmi(opts = {})
|
7
|
+
command = Kanrisuru::Command.new('dmidecode')
|
8
|
+
dmi_type_opts(command, opts)
|
9
|
+
|
10
|
+
execute_shell(command)
|
11
|
+
|
12
|
+
Kanrisuru::Result.new(command) do |cmd|
|
13
|
+
Parser::Dmi.parse(cmd)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
private
|
18
|
+
|
19
|
+
def dmi_type_opts(command, opts)
|
20
|
+
return unless Kanrisuru::Util.present?(opts[:types])
|
21
|
+
|
22
|
+
types = opts[:types]
|
23
|
+
types = [types] if types.instance_of?(String)
|
24
|
+
|
25
|
+
types.each do |type|
|
26
|
+
type = get_dmi_type(type)
|
27
|
+
command.append_arg('--type', type)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def get_dmi_type(type)
|
32
|
+
raise ArgumentError, 'Invalid DMI type' unless Kanrisuru::Util::DmiType.valid?(type)
|
33
|
+
|
34
|
+
if type.instance_of?(Integer)
|
35
|
+
type
|
36
|
+
else
|
37
|
+
Kanrisuru::Util::DmiType[type]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|