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,8 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'commands/is_user'
|
4
|
+
require_relative 'commands/get_uid'
|
5
|
+
require_relative 'commands/get_user'
|
6
|
+
require_relative 'commands/create_user'
|
7
|
+
require_relative 'commands/update_user'
|
8
|
+
require_relative 'commands/delete_user'
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module User
|
6
|
+
module Parser
|
7
|
+
class Getent
|
8
|
+
def self.parse(command)
|
9
|
+
command.to_s.split.map do |value|
|
10
|
+
Kanrisuru::Core::User::FilePath.new(value)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module User
|
6
|
+
module Parser
|
7
|
+
class Groups
|
8
|
+
def self.parse(command)
|
9
|
+
string = command.to_s
|
10
|
+
string = string.split('groups=')[1]
|
11
|
+
string.gsub(/\(/, '').gsub(/\)/, '').split(',')
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/kanrisuru/core/user.rb
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'user/types'
|
4
|
+
require_relative 'user/parser'
|
5
|
+
require_relative 'user/commands'
|
6
|
+
|
3
7
|
module Kanrisuru
|
4
8
|
module Core
|
5
9
|
module User
|
@@ -11,188 +15,6 @@ module Kanrisuru
|
|
11
15
|
os_define :linux, :create_user
|
12
16
|
os_define :linux, :update_user
|
13
17
|
os_define :linux, :delete_user
|
14
|
-
|
15
|
-
User = Struct.new(:uid, :name, :home, :shell, :groups)
|
16
|
-
UserGroup = Struct.new(:gid, :name)
|
17
|
-
FilePath = Struct.new(:path)
|
18
|
-
|
19
|
-
def user?(user)
|
20
|
-
result = get_uid(user)
|
21
|
-
return false if result.failure?
|
22
|
-
|
23
|
-
Kanrisuru::Util.present?(result.data) && result.data.instance_of?(Integer)
|
24
|
-
end
|
25
|
-
|
26
|
-
def get_uid(user)
|
27
|
-
command = Kanrisuru::Command.new("id -u #{user}")
|
28
|
-
|
29
|
-
execute(command)
|
30
|
-
|
31
|
-
Kanrisuru::Result.new(command, &:to_i)
|
32
|
-
end
|
33
|
-
|
34
|
-
def get_user(user)
|
35
|
-
command = Kanrisuru::Command.new("id #{user}")
|
36
|
-
execute_shell(command)
|
37
|
-
|
38
|
-
Kanrisuru::Result.new(command) do |cmd|
|
39
|
-
## Get user id
|
40
|
-
result = get_uid(user)
|
41
|
-
break if result.failure?
|
42
|
-
|
43
|
-
uid = result.to_i
|
44
|
-
|
45
|
-
## Get all groups for the user, with gid and group name
|
46
|
-
string = cmd.to_s
|
47
|
-
string = string.split('groups=')[1]
|
48
|
-
array = string.gsub(/\(/, '').gsub(/\)/, '').split(',')
|
49
|
-
|
50
|
-
groups = array.map do |str|
|
51
|
-
gid = str.delete('^0-9').to_i
|
52
|
-
name = str.delete('0-9')
|
53
|
-
|
54
|
-
UserGroup.new(gid, name)
|
55
|
-
end
|
56
|
-
|
57
|
-
## Get home / shell path information
|
58
|
-
cmd = Kanrisuru::Command.new("getent passwd #{user}")
|
59
|
-
cmd | "awk -F: '{print $6, $7}'"
|
60
|
-
|
61
|
-
execute(cmd)
|
62
|
-
|
63
|
-
result = Kanrisuru::Result.new(cmd) do |cmd2|
|
64
|
-
cmd2.to_s.split.map { |value| FilePath.new(value) }
|
65
|
-
end
|
66
|
-
|
67
|
-
## TODO: Raise custom error to change parent result to use nested error and mark
|
68
|
-
## as failure.
|
69
|
-
break if result.failure?
|
70
|
-
|
71
|
-
home = result[0]
|
72
|
-
shell = result[1]
|
73
|
-
|
74
|
-
User.new(uid, user, home, shell, groups)
|
75
|
-
end
|
76
|
-
end
|
77
|
-
|
78
|
-
def create_user(user, opts = {})
|
79
|
-
uid = opts[:uid]
|
80
|
-
group = opts[:group]
|
81
|
-
groups = opts[:groups]
|
82
|
-
home = opts[:home]
|
83
|
-
shell = opts[:shell] || '/bin/false'
|
84
|
-
createhome = opts[:createhome]
|
85
|
-
system_opt = opts[:system]
|
86
|
-
skeleton = opts[:skeleton]
|
87
|
-
non_unique = opts[:non_unique]
|
88
|
-
password = opts[:password]
|
89
|
-
expires = opts[:expires] ## YYYY-MM-DD
|
90
|
-
|
91
|
-
command = Kanrisuru::Command.new("useradd #{user}")
|
92
|
-
|
93
|
-
if Kanrisuru::Util.present?(uid)
|
94
|
-
command.append_arg('-u', uid)
|
95
|
-
command.append_flag('-o', non_unique)
|
96
|
-
end
|
97
|
-
|
98
|
-
command.append_flag('-r', system_opt)
|
99
|
-
command.append_arg('-s', shell)
|
100
|
-
command.append_arg('-d', home)
|
101
|
-
|
102
|
-
case createhome
|
103
|
-
when true
|
104
|
-
command.append_flag('-m')
|
105
|
-
command.append_arg('-k', skeleton)
|
106
|
-
when false
|
107
|
-
command.append_flag('-M')
|
108
|
-
end
|
109
|
-
|
110
|
-
if Kanrisuru::Util.present?(group) && group?(group)
|
111
|
-
command.append_arg('-g', group)
|
112
|
-
elsif group?(user)
|
113
|
-
command.append_flag('-N')
|
114
|
-
end
|
115
|
-
|
116
|
-
command.append_arg('-G', groups.join(',')) if Kanrisuru::Util.present?(groups)
|
117
|
-
|
118
|
-
command.append_arg('-p', password)
|
119
|
-
command.append_arg('-e', expires)
|
120
|
-
|
121
|
-
execute_shell(command)
|
122
|
-
|
123
|
-
Kanrisuru::Result.new(command) do
|
124
|
-
get_user(user).data
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
def update_user(user, opts = {})
|
129
|
-
uid = opts[:uid]
|
130
|
-
group = opts[:group]
|
131
|
-
groups = opts[:groups]
|
132
|
-
append = opts[:append]
|
133
|
-
home = opts[:home]
|
134
|
-
move_home = opts[:move_home]
|
135
|
-
shell = opts[:shell] || '/bin/false'
|
136
|
-
non_unique = opts[:non_unique]
|
137
|
-
password = opts[:password]
|
138
|
-
expires = opts[:expires] ## YYYY-MM-DD
|
139
|
-
locked = opts[:locked]
|
140
|
-
|
141
|
-
command = Kanrisuru::Command.new("usermod #{user}")
|
142
|
-
|
143
|
-
if Kanrisuru::Util.present?(home)
|
144
|
-
command.append_arg('-d', home)
|
145
|
-
command.append_flag('-m', move_home)
|
146
|
-
end
|
147
|
-
|
148
|
-
command.append_arg('-s', shell)
|
149
|
-
|
150
|
-
if Kanrisuru::Util.present?(uid)
|
151
|
-
command.append_arg('-u', uid)
|
152
|
-
command.append_flag('-o', non_unique)
|
153
|
-
end
|
154
|
-
|
155
|
-
command.append_arg('-g', group) if Kanrisuru::Util.present?(group) && group_exists?(group)
|
156
|
-
|
157
|
-
if Kanrisuru::Util.present?(groups)
|
158
|
-
command.append_arg('-G', groups.join(','))
|
159
|
-
command.append_flag('-a', append)
|
160
|
-
end
|
161
|
-
|
162
|
-
case locked
|
163
|
-
when true
|
164
|
-
command.append_flag('-L')
|
165
|
-
command.append_arg('-e', 1)
|
166
|
-
when false
|
167
|
-
command.append_arg('-U')
|
168
|
-
command.append_arg('-e', 99_999)
|
169
|
-
else
|
170
|
-
## Ensure expires isn't added twice.
|
171
|
-
command.append_arg('-e', expires)
|
172
|
-
|
173
|
-
## Can't use password with lock / unlock flag.
|
174
|
-
command.append_arg('-p', password)
|
175
|
-
end
|
176
|
-
|
177
|
-
execute_shell(command)
|
178
|
-
|
179
|
-
Kanrisuru::Result.new(command) do |_command|
|
180
|
-
get_user(user).data
|
181
|
-
end
|
182
|
-
end
|
183
|
-
|
184
|
-
def delete_user(user, opts = {})
|
185
|
-
force = opts[:force]
|
186
|
-
|
187
|
-
return false unless get_uid(user)
|
188
|
-
|
189
|
-
command = Kanrisuru::Command.new("userdel #{user}")
|
190
|
-
command.append_flag('-f', force)
|
191
|
-
|
192
|
-
execute_shell(command)
|
193
|
-
|
194
|
-
Kanrisuru::Result.new(command)
|
195
|
-
end
|
196
18
|
end
|
197
19
|
end
|
198
20
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_autoremove(_opts)
|
7
|
+
command = Kanrisuru::Command.new('yum autoremove')
|
8
|
+
command.append_flag('-y')
|
9
|
+
execute_shell(command)
|
10
|
+
Kanrisuru::Result.new(command)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_clean(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum clean')
|
8
|
+
|
9
|
+
command.append_flag('dbcache', opts[:dbcache])
|
10
|
+
command.append_flag('expire-cache', opts[:expire_cache])
|
11
|
+
command.append_flag('metadata', opts[:metadata])
|
12
|
+
command.append_flag('packages', opts[:packages])
|
13
|
+
command.append_flag('headers', opts[:headers])
|
14
|
+
command.append_flag('rpmdb', opts[:rpmdb])
|
15
|
+
command.append_flag('all', opts[:all])
|
16
|
+
|
17
|
+
execute_shell(command)
|
18
|
+
|
19
|
+
Kanrisuru::Result.new(command)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_erase(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum erase')
|
8
|
+
command.append_flag('-y')
|
9
|
+
|
10
|
+
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
11
|
+
raise ArgumentError, "can't erase yum" if packages.include?('yum')
|
12
|
+
|
13
|
+
command << packages
|
14
|
+
|
15
|
+
execute_shell(command)
|
16
|
+
Kanrisuru::Result.new(command)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_info(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum info')
|
8
|
+
command.append_flag('--quiet')
|
9
|
+
command.append_flag('installed', opts[:installed])
|
10
|
+
|
11
|
+
command << Kanrisuru::Util.array_join_string(opts[:packages], ' ') if opts[:packages]
|
12
|
+
|
13
|
+
execute_shell(command)
|
14
|
+
|
15
|
+
Kanrisuru::Result.new(command) do |cmd|
|
16
|
+
Parser::Info.parse(cmd)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_install(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum install')
|
8
|
+
command.append_flag('-y')
|
9
|
+
|
10
|
+
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
11
|
+
command << packages
|
12
|
+
|
13
|
+
execute_shell(command)
|
14
|
+
Kanrisuru::Result.new(command)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_list(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum list')
|
8
|
+
|
9
|
+
yum_disable_repo(command, opts[:disable_repo])
|
10
|
+
|
11
|
+
command.append_flag('all', opts[:all])
|
12
|
+
command.append_flag('available', opts[:available])
|
13
|
+
command.append_flag('updates', opts[:updates])
|
14
|
+
command.append_flag('installed', opts[:installed])
|
15
|
+
command.append_flag('extras', opts[:extras])
|
16
|
+
command.append_flag('obsoletes', opts[:obsoletes])
|
17
|
+
|
18
|
+
command << opts[:query] if Kanrisuru::Util.present?(opts[:query])
|
19
|
+
|
20
|
+
pipe_output_newline(command)
|
21
|
+
|
22
|
+
execute_shell(command)
|
23
|
+
|
24
|
+
Kanrisuru::Result.new(command) do |cmd|
|
25
|
+
Parser::List.parse(cmd)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_localinstall(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum localinstall')
|
8
|
+
yum_disable_repo(command, opts[:disable_repo])
|
9
|
+
command.append_flag('-y')
|
10
|
+
|
11
|
+
if Kanrisuru::Util.present?(opts[:repos])
|
12
|
+
repos = Kanrisuru::Util.array_join_string(opts[:repos], ' ')
|
13
|
+
command << repos
|
14
|
+
end
|
15
|
+
|
16
|
+
execute_shell(command)
|
17
|
+
|
18
|
+
Kanrisuru::Result.new(command)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_remove(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum remove')
|
8
|
+
command.append_flag('-y')
|
9
|
+
|
10
|
+
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
11
|
+
raise ArgumentError, "can't remove yum" if packages.include?('yum')
|
12
|
+
|
13
|
+
command << packages
|
14
|
+
|
15
|
+
execute_shell(command)
|
16
|
+
Kanrisuru::Result.new(command)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_repolist(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum repolist')
|
8
|
+
command.append_flag('--verbose')
|
9
|
+
|
10
|
+
command << Kanrisuru::Util.array_join_string(opts[:repos], ' ') if opts[:repos]
|
11
|
+
|
12
|
+
execute_shell(command)
|
13
|
+
|
14
|
+
Kanrisuru::Result.new(command) do |cmd|
|
15
|
+
Parser::Repolist.parse(cmd)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_search(opts)
|
7
|
+
command = Kanrisuru::Command.new('yum search')
|
8
|
+
command.append_flag('all', opts[:all])
|
9
|
+
command << Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
10
|
+
|
11
|
+
pipe_output_newline(command)
|
12
|
+
|
13
|
+
execute_shell(command)
|
14
|
+
|
15
|
+
Kanrisuru::Result.new(command) do |cmd|
|
16
|
+
Parser::Search.parse(cmd)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_update(_opts)
|
7
|
+
command = Kanrisuru::Command.new('yum update')
|
8
|
+
command.append_flag('-y')
|
9
|
+
execute_shell(command)
|
10
|
+
Kanrisuru::Result.new(command)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
def yum_upgrade(_opts)
|
7
|
+
command = Kanrisuru::Command.new('yum upgrade')
|
8
|
+
command.append_flag('-y')
|
9
|
+
execute_shell(command)
|
10
|
+
Kanrisuru::Result.new(command)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'commands/autoremove'
|
4
|
+
require_relative 'commands/clean'
|
5
|
+
require_relative 'commands/erase'
|
6
|
+
require_relative 'commands/info'
|
7
|
+
require_relative 'commands/install'
|
8
|
+
require_relative 'commands/list'
|
9
|
+
require_relative 'commands/localinstall'
|
10
|
+
require_relative 'commands/remove'
|
11
|
+
require_relative 'commands/repolist'
|
12
|
+
require_relative 'commands/search'
|
13
|
+
require_relative 'commands/update'
|
14
|
+
require_relative 'commands/upgrade'
|
15
|
+
|
16
|
+
module Kanrisuru
|
17
|
+
module Core
|
18
|
+
module Yum
|
19
|
+
private
|
20
|
+
|
21
|
+
## Bug reported on the output of the yum command
|
22
|
+
## https://bugzilla.redhat.com/show_bug.cgi?id=584525
|
23
|
+
## that autowraps text when used in a script beyond 80 chars wide.
|
24
|
+
## Work-around with formatting by
|
25
|
+
## piping through trimming extra newline chars.
|
26
|
+
def pipe_output_newline(command)
|
27
|
+
command | "tr '\\n' '#'"
|
28
|
+
command | "sed -e 's/# / /g'"
|
29
|
+
command | "tr '#' '\\n'"
|
30
|
+
end
|
31
|
+
|
32
|
+
def yum_disable_repo(command, repo)
|
33
|
+
return unless Kanrisuru::Util.present?(repo)
|
34
|
+
|
35
|
+
command.append_flag("--disablerepo=#{repo}")
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
module Parser
|
7
|
+
class Base
|
8
|
+
class << self
|
9
|
+
def extract_single_yum_line(line)
|
10
|
+
values = line.split(': ', 2)
|
11
|
+
values.length == 2 ? values[1] : ''
|
12
|
+
end
|
13
|
+
|
14
|
+
def parse_yum_line(line)
|
15
|
+
values = line.split
|
16
|
+
return if values.length != 3
|
17
|
+
return unless /^\w+\.\w+$/i.match(values[0])
|
18
|
+
|
19
|
+
full_name = values[0]
|
20
|
+
version = values[1]
|
21
|
+
|
22
|
+
name, architecture = full_name.split('.')
|
23
|
+
|
24
|
+
Kanrisuru::Core::Yum::PackageOverview.new(name, architecture, version)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
module Parser
|
7
|
+
class Info < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
current_row = nil
|
13
|
+
description = ''
|
14
|
+
|
15
|
+
lines.each do |line|
|
16
|
+
next unless line.include?(': ')
|
17
|
+
|
18
|
+
case line
|
19
|
+
when /^Name/
|
20
|
+
unless current_row.nil?
|
21
|
+
current_row.description = description.strip
|
22
|
+
description = ''
|
23
|
+
rows << current_row
|
24
|
+
end
|
25
|
+
|
26
|
+
current_row = Kanrisuru::Core::Yum::PackageDetail.new
|
27
|
+
current_row.package = extract_single_yum_line(line)
|
28
|
+
when /^Arch/, /^Architecture/
|
29
|
+
current_row.architecture = extract_single_yum_line(line)
|
30
|
+
when /^Version/
|
31
|
+
current_row.version = extract_single_yum_line(line)
|
32
|
+
when /^Release/
|
33
|
+
current_row.release = extract_single_yum_line(line)
|
34
|
+
when /^Source/
|
35
|
+
current_row.source = extract_single_yum_line(line)
|
36
|
+
when /^Repository/
|
37
|
+
current_row.repository = extract_single_yum_line(line)
|
38
|
+
when /^Summary/
|
39
|
+
current_row.summary = extract_single_yum_line(line)
|
40
|
+
when /^URL/, /^Url/
|
41
|
+
current_row.url = extract_single_yum_line(line)
|
42
|
+
when /^License/
|
43
|
+
current_row.license = extract_single_yum_line(line)
|
44
|
+
when /^From repo/
|
45
|
+
current_row.yum_id = extract_single_yum_line(line)
|
46
|
+
when /^Size/
|
47
|
+
size = Kanrisuru::Util::Bits.normalize_size(extract_single_yum_line(line))
|
48
|
+
current_row.install_size = size
|
49
|
+
when /^Description/
|
50
|
+
description = extract_single_yum_line(line)
|
51
|
+
else
|
52
|
+
next if line == ''
|
53
|
+
|
54
|
+
description += " #{extract_single_yum_line(line).strip}"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
if current_row
|
59
|
+
current_row.description = description.strip
|
60
|
+
rows << current_row
|
61
|
+
end
|
62
|
+
|
63
|
+
rows
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
module Parser
|
7
|
+
class List < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
result = []
|
11
|
+
lines.each do |line|
|
12
|
+
item = parse_yum_line(line)
|
13
|
+
next unless item
|
14
|
+
|
15
|
+
result << item
|
16
|
+
end
|
17
|
+
|
18
|
+
result
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|