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,97 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Find
|
6
|
+
def find(opts = {})
|
7
|
+
paths = opts[:paths]
|
8
|
+
type = opts[:type]
|
9
|
+
regex = opts[:regex]
|
10
|
+
size = opts[:size]
|
11
|
+
|
12
|
+
command = Kanrisuru::Command.new('find')
|
13
|
+
|
14
|
+
case opts[:follow]
|
15
|
+
when 'never'
|
16
|
+
command.append_flag('-P')
|
17
|
+
when 'always'
|
18
|
+
command.append_flag('-L')
|
19
|
+
when 'command'
|
20
|
+
command.append_flag('-H')
|
21
|
+
end
|
22
|
+
|
23
|
+
if Kanrisuru::Util.present?(paths)
|
24
|
+
raise ArgumentError, 'Invalid paths type' unless [String, Array].include?(paths.class)
|
25
|
+
|
26
|
+
command.append_array(paths)
|
27
|
+
end
|
28
|
+
|
29
|
+
command.append_flag('-executable', opts[:executable])
|
30
|
+
command.append_flag('-empty', opts[:empty])
|
31
|
+
command.append_flag('-readable', opts[:readable])
|
32
|
+
command.append_flag('-writable', opts[:writable])
|
33
|
+
command.append_flag('-nogroup', opts[:nogroup])
|
34
|
+
command.append_flag('-nouser', opts[:nouser])
|
35
|
+
command.append_flag('-mount', opts[:mount])
|
36
|
+
|
37
|
+
command.append_arg('-path', opts[:path])
|
38
|
+
command.append_arg('-name', opts[:name])
|
39
|
+
command.append_arg('-gid', opts[:gid])
|
40
|
+
command.append_arg('-uid', opts[:uid])
|
41
|
+
command.append_arg('-user', opts[:user])
|
42
|
+
command.append_arg('-group', opts[:group])
|
43
|
+
command.append_arg('-inum', opts[:inode])
|
44
|
+
command.append_arg('-links', opts[:links])
|
45
|
+
command.append_arg('-maxdepth', opts[:maxdepth])
|
46
|
+
command.append_arg('-mindepth', opts[:mindepth])
|
47
|
+
|
48
|
+
command.append_arg('-atime', opts[:atime])
|
49
|
+
command.append_arg('-ctime', opts[:ctime])
|
50
|
+
command.append_arg('-mtime', opts[:mtime])
|
51
|
+
command.append_arg('-amin', opts[:amin])
|
52
|
+
command.append_arg('-cmin', opts[:cmin])
|
53
|
+
command.append_arg('-mmin', opts[:mmin])
|
54
|
+
|
55
|
+
if Kanrisuru::Util.present?(opts[:regex_type])
|
56
|
+
raise ArgumentError, 'invalid regex type' unless REGEX_TYPES.include?(opts[:regex_type])
|
57
|
+
|
58
|
+
command.append_arg('-regextype', opts[:regex_type])
|
59
|
+
end
|
60
|
+
|
61
|
+
command.append_arg('-regex', "'#{regex}'") if Kanrisuru::Util.present?(regex)
|
62
|
+
|
63
|
+
if size.instance_of?(String)
|
64
|
+
regex = Regexp.new(/^([-+])?(\d+)([bcwkMG])*$/)
|
65
|
+
raise ArgumentError, "invalid size string: '#{@size}'" unless regex.match?(size)
|
66
|
+
|
67
|
+
command.append_arg('-size', size)
|
68
|
+
elsif size.instance_of?(Integer)
|
69
|
+
command.append_arg('-size', size)
|
70
|
+
end
|
71
|
+
|
72
|
+
case type
|
73
|
+
when 'directory'
|
74
|
+
command.append_arg('-type', 'd')
|
75
|
+
when 'file'
|
76
|
+
command.append_arg('-type', 'f')
|
77
|
+
when 'symlinks'
|
78
|
+
command.append_arg('-type', 'l')
|
79
|
+
when 'block'
|
80
|
+
command.append_arg('-type', 'b')
|
81
|
+
when 'character'
|
82
|
+
command.append_arg('-type', 'c')
|
83
|
+
when 'pipe'
|
84
|
+
command.append_arg('-type', 'p')
|
85
|
+
when 'socket'
|
86
|
+
command.append_arg('-type', 's')
|
87
|
+
end
|
88
|
+
|
89
|
+
execute_shell(command)
|
90
|
+
|
91
|
+
Kanrisuru::Result.new(command) do |cmd|
|
92
|
+
Parser::Find.parse(cmd)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Find
|
6
|
+
module Parser
|
7
|
+
class Find
|
8
|
+
def self.parse(command)
|
9
|
+
rows = command.to_a
|
10
|
+
rows.map do |row|
|
11
|
+
Kanrisuru::Core::Find::FilePath.new(row)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/kanrisuru/core/find.rb
CHANGED
@@ -2,109 +2,17 @@
|
|
2
2
|
|
3
3
|
require 'date'
|
4
4
|
|
5
|
+
require_relative 'find/constants'
|
6
|
+
require_relative 'find/types'
|
7
|
+
require_relative 'find/parser'
|
8
|
+
require_relative 'find/commands'
|
9
|
+
|
5
10
|
module Kanrisuru
|
6
11
|
module Core
|
7
12
|
module Find
|
8
13
|
extend OsPackage::Define
|
9
14
|
|
10
15
|
os_define :linux, :find
|
11
|
-
|
12
|
-
FilePath = Struct.new(:path)
|
13
|
-
REGEX_TYPES = %w[emacs posix-awk posix-basic posix-egrep posix-extended].freeze
|
14
|
-
|
15
|
-
def find(opts = {})
|
16
|
-
paths = opts[:paths]
|
17
|
-
type = opts[:type]
|
18
|
-
regex = opts[:regex]
|
19
|
-
size = opts[:size]
|
20
|
-
|
21
|
-
command = Kanrisuru::Command.new('find')
|
22
|
-
|
23
|
-
case opts[:follow]
|
24
|
-
when 'never'
|
25
|
-
command.append_flag('-P')
|
26
|
-
when 'always'
|
27
|
-
command.append_flag('-L')
|
28
|
-
when 'command'
|
29
|
-
command.append_flag('-H')
|
30
|
-
end
|
31
|
-
|
32
|
-
if Kanrisuru::Util.present?(paths)
|
33
|
-
raise ArgumentError, 'Invalid paths type' unless [String, Array].include?(paths.class)
|
34
|
-
|
35
|
-
command.append_array(paths)
|
36
|
-
end
|
37
|
-
|
38
|
-
command.append_flag('-executable', opts[:executable])
|
39
|
-
command.append_flag('-empty', opts[:empty])
|
40
|
-
command.append_flag('-readable', opts[:readable])
|
41
|
-
command.append_flag('-writable', opts[:writable])
|
42
|
-
command.append_flag('-nogroup', opts[:nogroup])
|
43
|
-
command.append_flag('-nouser', opts[:nouser])
|
44
|
-
command.append_flag('-mount', opts[:mount])
|
45
|
-
|
46
|
-
command.append_arg('-path', opts[:path])
|
47
|
-
command.append_arg('-name', opts[:name])
|
48
|
-
command.append_arg('-gid', opts[:gid])
|
49
|
-
command.append_arg('-uid', opts[:uid])
|
50
|
-
command.append_arg('-user', opts[:user])
|
51
|
-
command.append_arg('-group', opts[:group])
|
52
|
-
command.append_arg('-inum', opts[:inode])
|
53
|
-
command.append_arg('-links', opts[:links])
|
54
|
-
command.append_arg('-maxdepth', opts[:maxdepth])
|
55
|
-
command.append_arg('-mindepth', opts[:mindepth])
|
56
|
-
|
57
|
-
command.append_arg('-atime', opts[:atime])
|
58
|
-
command.append_arg('-ctime', opts[:ctime])
|
59
|
-
command.append_arg('-mtime', opts[:mtime])
|
60
|
-
command.append_arg('-amin', opts[:amin])
|
61
|
-
command.append_arg('-cmin', opts[:cmin])
|
62
|
-
command.append_arg('-mmin', opts[:mmin])
|
63
|
-
|
64
|
-
if Kanrisuru::Util.present?(opts[:regex_type])
|
65
|
-
raise ArgumentError, 'invalid regex type' unless REGEX_TYPES.include?(opts[:regex_type])
|
66
|
-
|
67
|
-
command.append_arg('-regextype', opts[:regex_type])
|
68
|
-
end
|
69
|
-
|
70
|
-
command.append_arg('-regex', "'#{regex}'") if Kanrisuru::Util.present?(regex)
|
71
|
-
|
72
|
-
if size.instance_of?(String)
|
73
|
-
regex = Regexp.new(/^([-+])?(\d+)([bcwkMG])*$/)
|
74
|
-
raise ArgumentError, "invalid size string: '#{@size}'" unless regex.match?(size)
|
75
|
-
|
76
|
-
command.append_arg('-size', size)
|
77
|
-
elsif size.instance_of?(Integer)
|
78
|
-
command.append_arg('-size', size)
|
79
|
-
end
|
80
|
-
|
81
|
-
case type
|
82
|
-
when 'directory'
|
83
|
-
command.append_arg('-type', 'd')
|
84
|
-
when 'file'
|
85
|
-
command.append_arg('-type', 'f')
|
86
|
-
when 'symlinks'
|
87
|
-
command.append_arg('-type', 'l')
|
88
|
-
when 'block'
|
89
|
-
command.append_arg('-type', 'b')
|
90
|
-
when 'character'
|
91
|
-
command.append_arg('-type', 'c')
|
92
|
-
when 'pipe'
|
93
|
-
command.append_arg('-type', 'p')
|
94
|
-
when 'socket'
|
95
|
-
command.append_arg('-type', 's')
|
96
|
-
end
|
97
|
-
|
98
|
-
execute_shell(command)
|
99
|
-
|
100
|
-
Kanrisuru::Result.new(command) do |cmd|
|
101
|
-
rows = cmd.to_a
|
102
|
-
|
103
|
-
rows.map do |row|
|
104
|
-
FilePath.new(row)
|
105
|
-
end
|
106
|
-
end
|
107
|
-
end
|
108
16
|
end
|
109
17
|
end
|
110
18
|
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Group
|
6
|
+
def create_group(group, opts = {})
|
7
|
+
gid = opts[:gid]
|
8
|
+
|
9
|
+
command = Kanrisuru::Command.new("groupadd #{group}")
|
10
|
+
command.append_arg('-g', gid)
|
11
|
+
|
12
|
+
execute_shell(command)
|
13
|
+
|
14
|
+
Kanrisuru::Result.new(command) do
|
15
|
+
gid = Kanrisuru::Util.present?(gid) ? gid : get_gid(group).data
|
16
|
+
Group.new(gid, group)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Group
|
6
|
+
def delete_group(group)
|
7
|
+
return false unless group?(group)
|
8
|
+
|
9
|
+
command = Kanrisuru::Command.new("groupdel #{group}")
|
10
|
+
execute_shell(command)
|
11
|
+
|
12
|
+
Kanrisuru::Result.new(command)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Group
|
6
|
+
def get_gid(group)
|
7
|
+
command = Kanrisuru::Command.new("getent group #{group}")
|
8
|
+
|
9
|
+
execute(command)
|
10
|
+
|
11
|
+
Kanrisuru::Result.new(command) do |cmd|
|
12
|
+
Parser::Gid.parse(cmd)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Group
|
6
|
+
def get_group(group)
|
7
|
+
command = Kanrisuru::Command.new("getent group #{group} | cut -d: -f4")
|
8
|
+
|
9
|
+
execute(command)
|
10
|
+
|
11
|
+
Kanrisuru::Result.new(command) do |cmd|
|
12
|
+
## Get group id
|
13
|
+
result = get_gid(group)
|
14
|
+
break if result.failure?
|
15
|
+
|
16
|
+
gid = result.to_i
|
17
|
+
|
18
|
+
users = Parser::Group.parse(cmd)
|
19
|
+
users = users.map do |user|
|
20
|
+
uid = get_uid(user)
|
21
|
+
GroupUser.new(uid.to_i, user)
|
22
|
+
end
|
23
|
+
|
24
|
+
Group.new(gid, group, users)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Group
|
6
|
+
def group?(group)
|
7
|
+
result = get_gid(group)
|
8
|
+
return false if result.failure?
|
9
|
+
|
10
|
+
Kanrisuru::Util.present?(result.data) && result.data.instance_of?(Integer)
|
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 Group
|
6
|
+
def update_group(group, opts = {})
|
7
|
+
gid = opts[:gid]
|
8
|
+
return if Kanrisuru::Util.blank?(gid) || Kanrisuru::Util.blank?(opts[:new_name])
|
9
|
+
|
10
|
+
command = Kanrisuru::Command.new("groupmod #{group}")
|
11
|
+
command.append_arg('-g', gid)
|
12
|
+
command.append_arg('-n', opts[:new_name])
|
13
|
+
|
14
|
+
execute_shell(command)
|
15
|
+
|
16
|
+
Kanrisuru::Result.new(command) do
|
17
|
+
gid = Kanrisuru::Util.present?(gid) ? gid : get_gid(group).data
|
18
|
+
Group.new(gid, group)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'commands/get_gid'
|
4
|
+
require_relative 'commands/is_group'
|
5
|
+
require_relative 'commands/get_group'
|
6
|
+
require_relative 'commands/create_group'
|
7
|
+
require_relative 'commands/update_group'
|
8
|
+
require_relative 'commands/delete_group'
|
data/lib/kanrisuru/core/group.rb
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'group/types'
|
4
|
+
require_relative 'group/parser'
|
5
|
+
require_relative 'group/commands'
|
6
|
+
|
3
7
|
module Kanrisuru
|
4
8
|
module Core
|
5
9
|
module Group
|
@@ -11,87 +15,6 @@ module Kanrisuru
|
|
11
15
|
os_define :linux, :create_group
|
12
16
|
os_define :linux, :update_group
|
13
17
|
os_define :linux, :delete_group
|
14
|
-
|
15
|
-
Group = Struct.new(:gid, :name, :users)
|
16
|
-
GroupUser = Struct.new(:uid, :name)
|
17
|
-
|
18
|
-
def group?(group)
|
19
|
-
result = get_gid(group)
|
20
|
-
return false if result.failure?
|
21
|
-
|
22
|
-
Kanrisuru::Util.present?(result.data) && result.data.instance_of?(Integer)
|
23
|
-
end
|
24
|
-
|
25
|
-
def get_gid(group)
|
26
|
-
command = Kanrisuru::Command.new("getent group #{group}")
|
27
|
-
|
28
|
-
execute(command)
|
29
|
-
|
30
|
-
Kanrisuru::Result.new(command) do |cmd|
|
31
|
-
cmd.to_s.split(':')[2].to_i
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
def get_group(group)
|
36
|
-
command = Kanrisuru::Command.new("getent group #{group} | cut -d: -f4")
|
37
|
-
|
38
|
-
execute(command)
|
39
|
-
|
40
|
-
Kanrisuru::Result.new(command) do |cmd|
|
41
|
-
## Get group id
|
42
|
-
result = get_gid(group)
|
43
|
-
break if result.failure?
|
44
|
-
|
45
|
-
gid = result.to_i
|
46
|
-
|
47
|
-
array = cmd.to_s.split(',')
|
48
|
-
users = array.map do |user|
|
49
|
-
uid = get_uid(user)
|
50
|
-
GroupUser.new(uid.to_i, user)
|
51
|
-
end
|
52
|
-
|
53
|
-
Group.new(gid, group, users)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
def create_group(group, opts = {})
|
58
|
-
gid = opts[:gid]
|
59
|
-
|
60
|
-
command = Kanrisuru::Command.new("groupadd #{group}")
|
61
|
-
command.append_arg('-g', gid)
|
62
|
-
|
63
|
-
execute_shell(command)
|
64
|
-
|
65
|
-
Kanrisuru::Result.new(command) do
|
66
|
-
gid = Kanrisuru::Util.present?(gid) ? gid : get_gid(group).data
|
67
|
-
Group.new(gid, group)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
def update_group(group, opts = {})
|
72
|
-
gid = opts[:gid]
|
73
|
-
return if Kanrisuru::Util.blank?(gid) || Kanrisuru::Util.blank?(opts[:new_name])
|
74
|
-
|
75
|
-
command = Kanrisuru::Command.new("groupmod #{group}")
|
76
|
-
command.append_arg('-g', gid)
|
77
|
-
command.append_arg('-n', opts[:new_name])
|
78
|
-
|
79
|
-
execute_shell(command)
|
80
|
-
|
81
|
-
Kanrisuru::Result.new(command) do
|
82
|
-
gid = Kanrisuru::Util.present?(gid) ? gid : get_gid(group).data
|
83
|
-
Group.new(gid, group)
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
def delete_group(group)
|
88
|
-
return false unless group?(group)
|
89
|
-
|
90
|
-
command = Kanrisuru::Command.new("groupdel #{group}")
|
91
|
-
execute_shell(command)
|
92
|
-
|
93
|
-
Kanrisuru::Result.new(command)
|
94
|
-
end
|
95
18
|
end
|
96
19
|
end
|
97
20
|
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module IP
|
6
|
+
def ip_address(action, opts)
|
7
|
+
case action
|
8
|
+
when 'show', 'list'
|
9
|
+
version = ip_version.to_i
|
10
|
+
command = ip_address_show(opts, version)
|
11
|
+
when 'add'
|
12
|
+
command = ip_address_add(opts)
|
13
|
+
when 'del', 'delete'
|
14
|
+
command = ip_address_delete(opts)
|
15
|
+
when 'flush'
|
16
|
+
command = ip_address_flush(opts)
|
17
|
+
end
|
18
|
+
|
19
|
+
execute_shell(command)
|
20
|
+
|
21
|
+
Kanrisuru::Result.new(command) do |cmd|
|
22
|
+
Parser::Address.parse(cmd, action, version)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def ip_address_show(opts, version)
|
27
|
+
command = Kanrisuru::Command.new('ip')
|
28
|
+
command.append_flag('-json') if version >= IPROUTE2_JSON_VERSION
|
29
|
+
command.append_flag('-s', opts[:stats])
|
30
|
+
command.append_arg('-family', opts[:family])
|
31
|
+
command << 'address show'
|
32
|
+
|
33
|
+
command.append_arg('dev', opts[:dev])
|
34
|
+
command.append_arg('scope', opts[:scope])
|
35
|
+
command.append_arg('to', opts[:prefix])
|
36
|
+
command.append_arg('label', opts[:label])
|
37
|
+
|
38
|
+
command.append_flag('dynamic', opts[:dynamic])
|
39
|
+
command.append_flag('permanent', opts[:permanent])
|
40
|
+
command.append_flag('tenative', opts[:tenative])
|
41
|
+
command.append_flag('deprecated', opts[:deprecated])
|
42
|
+
command.append_flag('primary', opts[:primary])
|
43
|
+
command.append_flag('secondary', opts[:secondary])
|
44
|
+
command.append_flag('up', opts[:up])
|
45
|
+
command
|
46
|
+
end
|
47
|
+
|
48
|
+
def ip_address_add(opts)
|
49
|
+
command = Kanrisuru::Command.new('ip address add')
|
50
|
+
command << opts[:address]
|
51
|
+
|
52
|
+
command.append_arg('dev', opts[:dev])
|
53
|
+
command.append_arg('label', opts[:label])
|
54
|
+
command.append_arg('scope', opts[:scope])
|
55
|
+
command
|
56
|
+
end
|
57
|
+
|
58
|
+
def ip_address_delete(opts)
|
59
|
+
command = Kanrisuru::Command.new('ip address del')
|
60
|
+
command << opts[:address]
|
61
|
+
|
62
|
+
command.append_arg('dev', opts[:dev])
|
63
|
+
command.append_arg('label', opts[:label])
|
64
|
+
command.append_arg('scope', opts[:scope])
|
65
|
+
command
|
66
|
+
end
|
67
|
+
|
68
|
+
def ip_address_flush(opts)
|
69
|
+
command = Kanrisuru::Command.new('ip address flush')
|
70
|
+
|
71
|
+
command.append_arg('dev', opts[:dev])
|
72
|
+
command.append_arg('scope', opts[:scope])
|
73
|
+
command.append_arg('to', opts[:prefix])
|
74
|
+
command.append_arg('label', opts[:label])
|
75
|
+
|
76
|
+
command.append_flag('dynamic', opts[:dynamic])
|
77
|
+
command.append_flag('permanent', opts[:permanent])
|
78
|
+
command.append_flag('tenative', opts[:tenative])
|
79
|
+
command.append_flag('deprecated', opts[:deprecated])
|
80
|
+
command.append_flag('primary', opts[:primary])
|
81
|
+
command.append_flag('secondary', opts[:secondary])
|
82
|
+
command
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module IP
|
6
|
+
def ip_address_label(action, opts)
|
7
|
+
case action
|
8
|
+
when 'show', 'list'
|
9
|
+
version = ip_version.to_i
|
10
|
+
command = ip_address_label_show(opts, version)
|
11
|
+
when 'flush'
|
12
|
+
command = ip_address_label_flush(opts)
|
13
|
+
when 'add'
|
14
|
+
command = ip_address_label_add(opts)
|
15
|
+
when 'del'
|
16
|
+
command = ip_address_label_delete(opts)
|
17
|
+
end
|
18
|
+
|
19
|
+
execute_shell(command)
|
20
|
+
|
21
|
+
Kanrisuru::Result.new(command) do |cmd|
|
22
|
+
Parser::AddressLabel.parse(cmd, action, version)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def ip_address_label_delete(opts)
|
27
|
+
command = Kanrisuru::Command.new('ip addrlabel del')
|
28
|
+
command.append_arg('prefix', opts[:prefix])
|
29
|
+
command.append_arg('dev', opts[:dev])
|
30
|
+
command.append_arg('label', opts[:label])
|
31
|
+
command
|
32
|
+
end
|
33
|
+
|
34
|
+
def ip_address_label_add(opts)
|
35
|
+
command = Kanrisuru::Command.new('ip addrlabel add')
|
36
|
+
command.append_arg('prefix', opts[:prefix])
|
37
|
+
command.append_arg('dev', opts[:dev])
|
38
|
+
command.append_arg('label', opts[:label])
|
39
|
+
command
|
40
|
+
end
|
41
|
+
|
42
|
+
def ip_address_label_flush(_opts)
|
43
|
+
Kanrisuru::Command.new('ip addrlabel flush')
|
44
|
+
end
|
45
|
+
|
46
|
+
def ip_address_label_show(_opts, version)
|
47
|
+
command = Kanrisuru::Command.new('ip')
|
48
|
+
command.append_flag('-json') if version >= IPROUTE2_JSON_VERSION
|
49
|
+
command << 'addrlabel list'
|
50
|
+
command
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|