kanrisuru 0.11.1 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rspec +1 -1
- data/CHANGELOG.md +21 -0
- data/README.md +13 -88
- data/kanrisuru.gemspec +1 -0
- data/lib/kanrisuru/command.rb +7 -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 -145
- 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 -319
- 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 -101
- 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 +69 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
- data/lib/kanrisuru/core/ip/commands.rb +24 -0
- data/lib/kanrisuru/core/ip/constants.rb +13 -0
- data/lib/kanrisuru/core/ip/parser.rb +10 -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/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +5 -995
- 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 -126
- 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 -105
- 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 -1015
- data/lib/kanrisuru/os_package/collection.rb +58 -0
- data/lib/kanrisuru/os_package/define.rb +34 -0
- data/lib/kanrisuru/os_package/include.rb +163 -0
- data/lib/kanrisuru/os_package.rb +3 -245
- data/lib/kanrisuru/remote/fstab.rb +1 -1
- data/lib/kanrisuru/result.rb +5 -4
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/archive_spec.rb +2 -1
- data/spec/functional/core/mount_spec.rb +121 -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/stub_network.rb +1 -1
- data/spec/helper/test_hosts.rb +12 -2
- 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 +4 -4
- 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/command_spec.rb +18 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +433 -30
- data/spec/integration/core/apt_spec.rb +0 -120
- data/spec/integration/core/archive_spec.rb +0 -228
- data/spec/integration/core/disk_spec.rb +0 -94
- data/spec/integration/core/dmi_spec.rb +0 -37
- data/spec/integration/core/file_spec.rb +0 -368
- data/spec/integration/core/find_spec.rb +0 -53
- data/spec/integration/core/group_spec.rb +0 -65
- data/spec/integration/core/ip_spec.rb +0 -71
- data/spec/integration/core/path_spec.rb +0 -93
- data/spec/integration/core/socket_spec.rb +0 -31
- data/spec/integration/core/stat_spec.rb +0 -98
- data/spec/integration/core/stream_spec.rb +0 -117
- data/spec/integration/core/system_spec.rb +0 -143
- data/spec/integration/core/transfer_spec.rb +0 -108
- data/spec/integration/core/user_spec.rb +0 -76
- data/spec/integration/core/yum_spec.rb +0 -118
- data/spec/integration/core/zypper_spec.rb +0 -199
- data/spec/integration/remote/cpu_spec.rb +0 -41
- data/spec/integration/remote/env_spec.rb +0 -36
- data/spec/integration/remote/fstab_spec.rb +0 -92
- data/spec/integration/remote/host_spec.rb +0 -68
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -63
- data/spec/integration/remote/remote_file_spec.rb +0 -180
- data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Apt
|
6
|
+
Source = Struct.new(:url, :dist, :architecture)
|
7
|
+
PackageOverview = Struct.new(:package, :version, :suites, :architecture, :installed, :upgradeable, :automatic)
|
8
|
+
PackageDetail = Struct.new(
|
9
|
+
:package,
|
10
|
+
:version,
|
11
|
+
:priority,
|
12
|
+
:section,
|
13
|
+
:origin,
|
14
|
+
:maintainer,
|
15
|
+
:original_maintainer,
|
16
|
+
:bugs,
|
17
|
+
:install_size,
|
18
|
+
:dependencies,
|
19
|
+
:recommends,
|
20
|
+
:provides,
|
21
|
+
:suggests,
|
22
|
+
:breaks,
|
23
|
+
:conflicts,
|
24
|
+
:replaces,
|
25
|
+
:homepage,
|
26
|
+
:task,
|
27
|
+
:supported,
|
28
|
+
:download_size,
|
29
|
+
:apt_manual_installed,
|
30
|
+
:apt_sources,
|
31
|
+
:description,
|
32
|
+
:summary
|
33
|
+
)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/lib/kanrisuru/core/apt.rb
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'apt/types'
|
4
|
+
require_relative 'apt/parser'
|
5
|
+
require_relative 'apt/commands'
|
6
|
+
|
3
7
|
module Kanrisuru
|
4
8
|
module Core
|
5
9
|
module Apt
|
@@ -7,35 +11,6 @@ module Kanrisuru
|
|
7
11
|
|
8
12
|
os_define :debian, :apt
|
9
13
|
|
10
|
-
Source = Struct.new(:url, :dist, :architecture)
|
11
|
-
PackageOverview = Struct.new(:package, :version, :suites, :architecture, :installed, :upgradeable, :automatic)
|
12
|
-
PackageDetail = Struct.new(
|
13
|
-
:package,
|
14
|
-
:version,
|
15
|
-
:priority,
|
16
|
-
:section,
|
17
|
-
:origin,
|
18
|
-
:maintainer,
|
19
|
-
:original_maintainer,
|
20
|
-
:bugs,
|
21
|
-
:install_size,
|
22
|
-
:dependencies,
|
23
|
-
:recommends,
|
24
|
-
:provides,
|
25
|
-
:suggests,
|
26
|
-
:breaks,
|
27
|
-
:conflicts,
|
28
|
-
:replaces,
|
29
|
-
:homepage,
|
30
|
-
:task,
|
31
|
-
:supported,
|
32
|
-
:download_size,
|
33
|
-
:apt_manual_installed,
|
34
|
-
:apt_sources,
|
35
|
-
:description,
|
36
|
-
:summary
|
37
|
-
)
|
38
|
-
|
39
14
|
def apt(action, opts = {})
|
40
15
|
case action
|
41
16
|
when 'list'
|
@@ -64,261 +39,6 @@ module Kanrisuru
|
|
64
39
|
apt_autoclean(opts)
|
65
40
|
end
|
66
41
|
end
|
67
|
-
|
68
|
-
private
|
69
|
-
|
70
|
-
def apt_autoclean(_opts)
|
71
|
-
command = Kanrisuru::Command.new('apt-get autoclean')
|
72
|
-
execute_shell(command)
|
73
|
-
Kanrisuru::Result.new(command)
|
74
|
-
end
|
75
|
-
|
76
|
-
def apt_clean(_opts)
|
77
|
-
command = Kanrisuru::Command.new('apt-get clean')
|
78
|
-
execute_shell(command)
|
79
|
-
Kanrisuru::Result.new(command)
|
80
|
-
end
|
81
|
-
|
82
|
-
def apt_search(opts)
|
83
|
-
command = Kanrisuru::Command.new('apt search')
|
84
|
-
command << opts[:query]
|
85
|
-
|
86
|
-
execute_shell(command)
|
87
|
-
|
88
|
-
Kanrisuru::Result.new(command) do |cmd|
|
89
|
-
lines = cmd.to_a
|
90
|
-
lines.shift
|
91
|
-
lines.shift
|
92
|
-
|
93
|
-
result = []
|
94
|
-
|
95
|
-
lines.each do |line|
|
96
|
-
next unless line.include?('/')
|
97
|
-
|
98
|
-
item = parse_apt_line(line)
|
99
|
-
next unless item
|
100
|
-
|
101
|
-
result << item
|
102
|
-
end
|
103
|
-
|
104
|
-
result
|
105
|
-
end
|
106
|
-
end
|
107
|
-
|
108
|
-
def apt_list(opts)
|
109
|
-
command = Kanrisuru::Command.new('apt list')
|
110
|
-
command.append_flag('--installed', opts[:installed])
|
111
|
-
command.append_flag('--upgradeable', opts[:upgradeable])
|
112
|
-
command.append_flag('--all-versions', opts[:all_versions])
|
113
|
-
command.append_arg('-a', opts[:package_name])
|
114
|
-
|
115
|
-
execute_shell(command)
|
116
|
-
|
117
|
-
Kanrisuru::Result.new(command) do |cmd|
|
118
|
-
lines = cmd.to_a
|
119
|
-
lines.shift
|
120
|
-
|
121
|
-
result = []
|
122
|
-
lines.each do |line|
|
123
|
-
item = parse_apt_line(line)
|
124
|
-
next unless item
|
125
|
-
|
126
|
-
result << item
|
127
|
-
end
|
128
|
-
|
129
|
-
result
|
130
|
-
end
|
131
|
-
end
|
132
|
-
|
133
|
-
def apt_autoremove(_opts)
|
134
|
-
command = Kanrisuru::Command.new('apt-get autoremove')
|
135
|
-
command.append_flag('-y')
|
136
|
-
|
137
|
-
execute_shell(command)
|
138
|
-
Kanrisuru::Result.new(command)
|
139
|
-
end
|
140
|
-
|
141
|
-
def apt_purge(opts)
|
142
|
-
command = Kanrisuru::Command.new('apt-get purge')
|
143
|
-
command.append_flag('-y')
|
144
|
-
|
145
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
146
|
-
command << packages
|
147
|
-
|
148
|
-
execute_shell(command)
|
149
|
-
Kanrisuru::Result.new(command)
|
150
|
-
end
|
151
|
-
|
152
|
-
def apt_remove(opts)
|
153
|
-
command = Kanrisuru::Command.new('apt-get remove')
|
154
|
-
command.append_flag('-y')
|
155
|
-
|
156
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
157
|
-
command << packages
|
158
|
-
|
159
|
-
execute_shell(command)
|
160
|
-
Kanrisuru::Result.new(command)
|
161
|
-
end
|
162
|
-
|
163
|
-
def apt_install(opts)
|
164
|
-
command = Kanrisuru::Command.new('apt-get install')
|
165
|
-
command.append_flag('-y')
|
166
|
-
|
167
|
-
command.append_flag('--no-upgrade', opts[:no_upgrade])
|
168
|
-
command.append_flag('--only-upgrade', opts[:only_upgrade])
|
169
|
-
command.append_flag('--reinstall', opts[:reinstall])
|
170
|
-
|
171
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
172
|
-
command << packages
|
173
|
-
|
174
|
-
execute_shell(command)
|
175
|
-
Kanrisuru::Result.new(command)
|
176
|
-
end
|
177
|
-
|
178
|
-
def apt_full_upgrade(_opts)
|
179
|
-
command = Kanrisuru::Command.new('apt full-upgrade')
|
180
|
-
command.append_flag('-y')
|
181
|
-
execute_shell(command)
|
182
|
-
Kanrisuru::Result.new(command)
|
183
|
-
end
|
184
|
-
|
185
|
-
def apt_upgrade(_opts)
|
186
|
-
command = Kanrisuru::Command.new('apt-get upgrade')
|
187
|
-
command.append_flag('-y')
|
188
|
-
execute_shell(command)
|
189
|
-
Kanrisuru::Result.new(command)
|
190
|
-
end
|
191
|
-
|
192
|
-
def apt_update(_opts)
|
193
|
-
command = Kanrisuru::Command.new('apt-get update')
|
194
|
-
command.append_flag('-y')
|
195
|
-
execute_shell(command)
|
196
|
-
Kanrisuru::Result.new(command)
|
197
|
-
end
|
198
|
-
|
199
|
-
def apt_show(opts)
|
200
|
-
command = Kanrisuru::Command.new('apt show')
|
201
|
-
command.append_flag('-a')
|
202
|
-
|
203
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
204
|
-
command << packages
|
205
|
-
|
206
|
-
execute_shell(command)
|
207
|
-
|
208
|
-
Kanrisuru::Result.new(command) do |cmd|
|
209
|
-
lines = cmd.to_a
|
210
|
-
rows = []
|
211
|
-
|
212
|
-
current_row = nil
|
213
|
-
description = ''
|
214
|
-
|
215
|
-
lines.each do |line|
|
216
|
-
next if line == 'WARNING: apt does not have a stable CLI interface. Use with caution in scripts.'
|
217
|
-
next if ['', nil, '.'].include?(line)
|
218
|
-
|
219
|
-
case line
|
220
|
-
when /^Package:/
|
221
|
-
unless current_row.nil?
|
222
|
-
current_row.description = description.strip
|
223
|
-
description = ''
|
224
|
-
rows << current_row
|
225
|
-
end
|
226
|
-
|
227
|
-
current_row = PackageDetail.new
|
228
|
-
current_row.package = extract_single_line(line)
|
229
|
-
when /^Version:/
|
230
|
-
current_row.version = extract_single_line(line)
|
231
|
-
when /^Priority:/
|
232
|
-
current_row.priority = extract_single_line(line)
|
233
|
-
when /^Section:/
|
234
|
-
current_row.section = extract_single_line(line)
|
235
|
-
when /^Origin:/
|
236
|
-
current_row.origin = extract_single_line(line)
|
237
|
-
when /^Maintainer:/
|
238
|
-
current_row.maintainer = extract_single_line(line)
|
239
|
-
when /^Original-Maintainer:/
|
240
|
-
current_row.original_maintainer = extract_single_line(line)
|
241
|
-
when /^Bugs:/
|
242
|
-
current_row.bugs = extract_single_line(line)
|
243
|
-
when /^Installed-Size:/
|
244
|
-
size = Kanrisuru::Util::Bits.normalize_size(extract_single_line(line))
|
245
|
-
current_row.install_size = size
|
246
|
-
when /^Download-Size:/
|
247
|
-
size = Kanrisuru::Util::Bits.normalize_size(extract_single_line(line))
|
248
|
-
current_row.download_size = size
|
249
|
-
when /^Depends:/
|
250
|
-
current_row.dependencies = parse_comma_values(extract_single_line(line))
|
251
|
-
when /^Provides:/
|
252
|
-
current_row.provides = parse_comma_values(extract_single_line(line))
|
253
|
-
when /^Recommends:/
|
254
|
-
current_row.recommends = parse_comma_values(extract_single_line(line))
|
255
|
-
when /^Suggests:/
|
256
|
-
current_row.suggests = parse_comma_values(extract_single_line(line))
|
257
|
-
when /^Breaks:/
|
258
|
-
current_row.breaks = parse_comma_values(extract_single_line(line))
|
259
|
-
when /^Conflicts:/
|
260
|
-
current_row.conflicts = parse_comma_values(extract_single_line(line))
|
261
|
-
when /^Replaces:/
|
262
|
-
current_row.replaces = parse_comma_values(extract_single_line(line))
|
263
|
-
when /^Homepage:/
|
264
|
-
current_row.homepage = extract_single_line(line)
|
265
|
-
when /^Task:/
|
266
|
-
current_row.task = parse_comma_values(extract_single_line(line))
|
267
|
-
when /^Supported:/
|
268
|
-
current_row.supported = extract_single_line(line)
|
269
|
-
when /^APT-Sources:/
|
270
|
-
current_row.apt_sources = parse_apt_sources(extract_single_line(line))
|
271
|
-
when /^APT-Manual-Installed:/
|
272
|
-
current_row.apt_manual_installed = extract_single_line(line) == 'yes'
|
273
|
-
when /^Description:/
|
274
|
-
current_row.summary = extract_single_line(line)
|
275
|
-
else
|
276
|
-
description += " #{line.strip}"
|
277
|
-
end
|
278
|
-
end
|
279
|
-
|
280
|
-
current_row.description = description.strip
|
281
|
-
rows << current_row
|
282
|
-
rows
|
283
|
-
end
|
284
|
-
end
|
285
|
-
|
286
|
-
def extract_single_line(line)
|
287
|
-
line.split(': ')[1]
|
288
|
-
end
|
289
|
-
|
290
|
-
def parse_comma_values(string)
|
291
|
-
string.split(', ')
|
292
|
-
end
|
293
|
-
|
294
|
-
def parse_apt_sources(string)
|
295
|
-
url, dist, architecture, = string.split
|
296
|
-
Source.new(url, dist, architecture)
|
297
|
-
end
|
298
|
-
|
299
|
-
def parse_apt_line(line)
|
300
|
-
values = line.split('/')
|
301
|
-
return if values.length < 2
|
302
|
-
|
303
|
-
package = values[0]
|
304
|
-
|
305
|
-
values = values[1].split
|
306
|
-
suites = values[0].split(',')
|
307
|
-
version = values[1]
|
308
|
-
architecture = values[2]
|
309
|
-
|
310
|
-
installed = false
|
311
|
-
upgradeable = false
|
312
|
-
automatic = false
|
313
|
-
|
314
|
-
if values.length > 3
|
315
|
-
installed = values[3].include?('installed')
|
316
|
-
upgradeable = values[3].include?('upgradeable')
|
317
|
-
automatic = values[3].include?('automatic')
|
318
|
-
end
|
319
|
-
|
320
|
-
PackageOverview.new(package, version, suites, architecture, installed, upgradeable, automatic)
|
321
|
-
end
|
322
42
|
end
|
323
43
|
end
|
324
44
|
end
|
@@ -0,0 +1,126 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Archive
|
6
|
+
def tar(action, file, opts = {})
|
7
|
+
paths = opts[:paths]
|
8
|
+
exclude = opts[:exclude]
|
9
|
+
|
10
|
+
command = Kanrisuru::Command.new('tar --restrict')
|
11
|
+
|
12
|
+
directory = opts[:directory] ? realpath(opts[:directory], strip: true).path : nil
|
13
|
+
command.append_arg('-C', directory)
|
14
|
+
command.append_arg('-f', file)
|
15
|
+
|
16
|
+
set_compression(command, opts[:compress]) if opts[:compress]
|
17
|
+
|
18
|
+
case action
|
19
|
+
when 'list', 't'
|
20
|
+
command.append_flag('-t')
|
21
|
+
command.append_arg('--occurrence', opts[:occurrence])
|
22
|
+
command.append_flag('--label', opts[:label])
|
23
|
+
command.append_flag('--multi-volume', opts[:multi_volume])
|
24
|
+
|
25
|
+
execute_shell(command)
|
26
|
+
Kanrisuru::Result.new(command) do |cmd|
|
27
|
+
items = cmd.to_a
|
28
|
+
|
29
|
+
items.map do |item|
|
30
|
+
FilePath.new(item)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
when 'extract', 'get', 'x'
|
34
|
+
command.append_flag('-x')
|
35
|
+
command.append_arg('--occurrence', opts[:occurrence])
|
36
|
+
|
37
|
+
command.append_flag('--no-same-owner', opts[:no_same_owner])
|
38
|
+
command.append_flag('--no-same-permissions', opts[:no_same_permissions])
|
39
|
+
command.append_flag('--no-selinux', opts[:no_selinux])
|
40
|
+
command.append_flag('--no-xattrs', opts[:no_xattrs])
|
41
|
+
command.append_flag('--preserve-permissions', opts[:preserve_permissions])
|
42
|
+
command.append_flag('--same-owner', opts[:same_owners])
|
43
|
+
command.append_flag('--multi-volume', opts[:multi_volume])
|
44
|
+
command.append_flag('--label', opts[:label])
|
45
|
+
command.append_flag('--one-file-system', opts[:one_file_system])
|
46
|
+
command.append_flag('--keep-old-files', opts[:keep_old_files])
|
47
|
+
command.append_flag('--skip-old-files', opts[:skip_old_files])
|
48
|
+
command.append_flag('--overwrite', opts[:overwrite])
|
49
|
+
command.append_flag('--overwrite-dir', opts[:overwrite_dir])
|
50
|
+
command.append_flag('--unlink-first', opts[:unlink_first])
|
51
|
+
command.append_flag('--recursive-unlink', opts[:recursive_unlink])
|
52
|
+
|
53
|
+
command.append_array(paths)
|
54
|
+
|
55
|
+
execute_shell(command)
|
56
|
+
Kanrisuru::Result.new(command)
|
57
|
+
when 'create', 'c'
|
58
|
+
command.append_flag('-c')
|
59
|
+
command.append_flag('--multi-volume', opts[:multi_volume])
|
60
|
+
|
61
|
+
if Kanrisuru::Util.present?(exclude)
|
62
|
+
options = exclude.instance_of?(String) ? [exclude] : exclude
|
63
|
+
options.each do |option|
|
64
|
+
command << "--exclude=#{option}"
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
command.append_array(paths)
|
69
|
+
|
70
|
+
execute_shell(command)
|
71
|
+
Kanrisuru::Result.new(command)
|
72
|
+
when 'append', 'r'
|
73
|
+
command.append_flag('-r')
|
74
|
+
command.append_array(paths)
|
75
|
+
|
76
|
+
execute_shell(command)
|
77
|
+
Kanrisuru::Result.new(command)
|
78
|
+
when 'catenate', 'concat', 'A'
|
79
|
+
command.append_flag('-A')
|
80
|
+
command.append_array(paths)
|
81
|
+
|
82
|
+
execute_shell(command)
|
83
|
+
Kanrisuru::Result.new(command)
|
84
|
+
when 'update', 'u'
|
85
|
+
command.append_flag('-u')
|
86
|
+
command.append_array(paths)
|
87
|
+
|
88
|
+
execute_shell(command)
|
89
|
+
Kanrisuru::Result.new(command)
|
90
|
+
when 'diff', 'compare', 'd'
|
91
|
+
command.append_flag('-d')
|
92
|
+
command.append_arg('--occurrence', opts[:occurrence])
|
93
|
+
|
94
|
+
execute_shell(command)
|
95
|
+
Kanrisuru::Result.new(command)
|
96
|
+
when 'delete'
|
97
|
+
command.append_flag('--delete')
|
98
|
+
command.append_arg('--occurrence', opts[:occurrence])
|
99
|
+
command.append_array(paths)
|
100
|
+
|
101
|
+
execute_shell(command)
|
102
|
+
Kanrisuru::Result.new(command)
|
103
|
+
else
|
104
|
+
raise ArgumentError, 'Invalid argument action'
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
private
|
109
|
+
|
110
|
+
def set_compression(command, compress)
|
111
|
+
case compress
|
112
|
+
when 'bzip2'
|
113
|
+
command.append_flag('-j')
|
114
|
+
when 'xz'
|
115
|
+
command.append_flag('-J')
|
116
|
+
when 'gzip'
|
117
|
+
command.append_flag('-z')
|
118
|
+
when 'lzma'
|
119
|
+
command.append_flag('--lzma')
|
120
|
+
else
|
121
|
+
raise ArgumentError, "Invalid copmression program: #{compress}"
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
@@ -1,156 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'archive/types'
|
4
|
+
require_relative 'archive/commands'
|
5
|
+
|
3
6
|
module Kanrisuru
|
4
7
|
module Core
|
5
8
|
module Archive
|
6
9
|
extend OsPackage::Define
|
7
10
|
|
8
11
|
os_define :linux, :tar
|
9
|
-
|
10
|
-
FilePath = Struct.new(:path)
|
11
|
-
|
12
|
-
def tar(action, file, opts = {})
|
13
|
-
compress = opts[:compress]
|
14
|
-
paths = opts[:paths]
|
15
|
-
exclude = opts[:exclude]
|
16
|
-
directory = opts[:directory]
|
17
|
-
|
18
|
-
command = Kanrisuru::Command.new('tar --restrict')
|
19
|
-
|
20
|
-
directory = realpath(directory, strip: true).path if directory
|
21
|
-
command.append_arg('-C', directory)
|
22
|
-
command.append_arg('-f', file)
|
23
|
-
|
24
|
-
set_compression(command, compress) if compress
|
25
|
-
|
26
|
-
case action
|
27
|
-
when 'list', 't'
|
28
|
-
command.append_flag('-t')
|
29
|
-
command.append_arg('--occurrence', opts[:occurrence])
|
30
|
-
command.append_flag('--label', opts[:label])
|
31
|
-
command.append_flag('--multi-volume', opts[:multi_volume])
|
32
|
-
|
33
|
-
execute_shell(command)
|
34
|
-
Kanrisuru::Result.new(command) do |cmd|
|
35
|
-
items = cmd.to_a
|
36
|
-
|
37
|
-
items.map do |item|
|
38
|
-
FilePath.new(item)
|
39
|
-
end
|
40
|
-
end
|
41
|
-
when 'extract', 'get', 'x'
|
42
|
-
command.append_flag('-x')
|
43
|
-
command.append_arg('--occurrence', opts[:occurrence])
|
44
|
-
|
45
|
-
command.append_flag('--no-same-owner', opts[:no_same_owner])
|
46
|
-
command.append_flag('--no-same-permissions', opts[:no_same_permissions])
|
47
|
-
command.append_flag('--no-selinux', opts[:no_selinux])
|
48
|
-
command.append_flag('--no-xattrs', opts[:no_xattrs])
|
49
|
-
command.append_flag('--preserve-permissions', opts[:preserve_permissions])
|
50
|
-
command.append_flag('--same-owner', opts[:same_owners])
|
51
|
-
command.append_flag('--multi-volume', opts[:multi_volume])
|
52
|
-
command.append_flag('--label', opts[:label])
|
53
|
-
command.append_flag('--one-file-system', opts[:one_file_system])
|
54
|
-
command.append_flag('--keep-old-files', opts[:keep_old_files])
|
55
|
-
command.append_flag('--skip-old-files', opts[:skip_old_files])
|
56
|
-
command.append_flag('--overwrite', opts[:overwrite])
|
57
|
-
command.append_flag('--overwrite-dir', opts[:overwrite_dir])
|
58
|
-
command.append_flag('--unlink-first', opts[:unlink_first])
|
59
|
-
command.append_flag('--recursive-unlink', opts[:recursive_unlink])
|
60
|
-
|
61
|
-
if Kanrisuru::Util.present?(paths)
|
62
|
-
paths = [paths] if paths.instance_of?(String)
|
63
|
-
command << paths.join(' ')
|
64
|
-
end
|
65
|
-
|
66
|
-
execute_shell(command)
|
67
|
-
Kanrisuru::Result.new(command)
|
68
|
-
when 'create', 'c'
|
69
|
-
command.append_flag('-c')
|
70
|
-
command.append_flag('--multi-volume', opts[:multi_volume])
|
71
|
-
|
72
|
-
if Kanrisuru::Util.present?(exclude)
|
73
|
-
exclude_options = exclude.instance_of?(String) ? [exclude] : exclude
|
74
|
-
exclude_options.each do |exclude_option|
|
75
|
-
command << "--exclude=#{exclude_option}"
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
if Kanrisuru::Util.present?(paths)
|
80
|
-
paths = paths.instance_of?(String) ? [paths] : paths
|
81
|
-
command << paths.join(' ')
|
82
|
-
end
|
83
|
-
|
84
|
-
execute_shell(command)
|
85
|
-
Kanrisuru::Result.new(command)
|
86
|
-
when 'append', 'r'
|
87
|
-
command.append_flag('-r')
|
88
|
-
|
89
|
-
if Kanrisuru::Util.present?(paths)
|
90
|
-
paths = paths.instance_of?(String) ? [paths] : paths
|
91
|
-
command << paths.join(' ')
|
92
|
-
end
|
93
|
-
|
94
|
-
execute_shell(command)
|
95
|
-
Kanrisuru::Result.new(command)
|
96
|
-
when 'catenate', 'concat', 'A'
|
97
|
-
command.append_flag('-A')
|
98
|
-
|
99
|
-
if Kanrisuru::Util.present?(paths)
|
100
|
-
paths = paths.instance_of?(String) ? [paths] : paths
|
101
|
-
command << paths.join(' ')
|
102
|
-
end
|
103
|
-
|
104
|
-
execute_shell(command)
|
105
|
-
Kanrisuru::Result.new(command)
|
106
|
-
when 'update', 'u'
|
107
|
-
command.append_flag('-u')
|
108
|
-
|
109
|
-
if Kanrisuru::Util.present?(paths)
|
110
|
-
paths = paths.instance_of?(String) ? [paths] : paths
|
111
|
-
command << paths.join(' ')
|
112
|
-
end
|
113
|
-
|
114
|
-
execute_shell(command)
|
115
|
-
Kanrisuru::Result.new(command)
|
116
|
-
when 'diff', 'compare', 'd'
|
117
|
-
command.append_flag('-d')
|
118
|
-
command.append_arg('--occurrence', opts[:occurrence])
|
119
|
-
|
120
|
-
execute_shell(command)
|
121
|
-
Kanrisuru::Result.new(command)
|
122
|
-
when 'delete'
|
123
|
-
command.append_flag('--delete')
|
124
|
-
command.append_arg('--occurrence', opts[:occurrence])
|
125
|
-
|
126
|
-
if Kanrisuru::Util.present?(paths)
|
127
|
-
paths = paths.instance_of?(String) ? [paths] : paths
|
128
|
-
command << paths.join(' ')
|
129
|
-
end
|
130
|
-
|
131
|
-
execute_shell(command)
|
132
|
-
Kanrisuru::Result.new(command)
|
133
|
-
else
|
134
|
-
raise ArgumentError, 'Invalid argument action'
|
135
|
-
end
|
136
|
-
end
|
137
|
-
|
138
|
-
private
|
139
|
-
|
140
|
-
def set_compression(command, compress)
|
141
|
-
case compress
|
142
|
-
when 'bzip2'
|
143
|
-
command.append_flag('-j')
|
144
|
-
when 'xz'
|
145
|
-
command.append_flag('-J')
|
146
|
-
when 'gzip'
|
147
|
-
command.append_flag('-z')
|
148
|
-
when 'lzma'
|
149
|
-
command.append_flag('--lzma')
|
150
|
-
else
|
151
|
-
raise ArgumentError, "Invalid copmression program: #{compress}"
|
152
|
-
end
|
153
|
-
end
|
154
12
|
end
|
155
13
|
end
|
156
14
|
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
def blkid(opts = {})
|
7
|
+
label = opts[:label]
|
8
|
+
uuid = opts[:uuid]
|
9
|
+
device = opts[:device]
|
10
|
+
|
11
|
+
mode = ''
|
12
|
+
command = Kanrisuru::Command.new('blkid')
|
13
|
+
|
14
|
+
if Kanrisuru::Util.present?(label) || Kanrisuru::Util.present?(uuid)
|
15
|
+
mode = 'search'
|
16
|
+
command.append_arg('-L', opts[:label])
|
17
|
+
command.append_arg('-U', opts[:uuid])
|
18
|
+
elsif Kanrisuru::Util.present?(device)
|
19
|
+
mode = 'device'
|
20
|
+
command.append_arg('-pio', 'export')
|
21
|
+
command << device
|
22
|
+
else
|
23
|
+
mode = 'list'
|
24
|
+
command.append_arg('-o', 'export')
|
25
|
+
end
|
26
|
+
|
27
|
+
execute_shell(command)
|
28
|
+
|
29
|
+
Kanrisuru::Result.new(command) do |cmd|
|
30
|
+
Parser::Blkid.parse(cmd, mode)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Disk
|
6
|
+
def df(opts = {})
|
7
|
+
path = opts[:path]
|
8
|
+
inodes = opts[:inodes]
|
9
|
+
|
10
|
+
command = Kanrisuru::Command.new('df')
|
11
|
+
|
12
|
+
command.append_flag('-PT')
|
13
|
+
command.append_flag('-i', inodes)
|
14
|
+
|
15
|
+
command << path if Kanrisuru::Util.present?(path)
|
16
|
+
command | "awk '{print $1, $2, $3, $5, $6, $7}'"
|
17
|
+
|
18
|
+
execute(command)
|
19
|
+
|
20
|
+
Kanrisuru::Result.new(command) do |cmd|
|
21
|
+
Parser::Df.parse(cmd)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|