kanrisuru 0.13.0 → 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/CHANGELOG.md +4 -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 +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 -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/unit/util_spec.rb +16 -0
- metadata +231 -2
@@ -0,0 +1,60 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
module Parser
|
7
|
+
class Repolist < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
current_row = nil
|
13
|
+
|
14
|
+
lines.each do |line|
|
15
|
+
case line
|
16
|
+
when /^Repo-id/
|
17
|
+
if current_row
|
18
|
+
rows << current_row
|
19
|
+
current_row = nil
|
20
|
+
end
|
21
|
+
|
22
|
+
current_row = Kanrisuru::Core::Yum::Repolist.new
|
23
|
+
current_row.id = extract_single_yum_line(line)
|
24
|
+
when /^Repo-name/
|
25
|
+
current_row.name = extract_single_yum_line(line)
|
26
|
+
when /^Repo-revision/
|
27
|
+
current_row.revision = extract_single_yum_line(line).to_i
|
28
|
+
when /^Repo-updated/, /^Updated/
|
29
|
+
text = extract_single_yum_line(line)
|
30
|
+
current_row.updated = DateTime.parse(text)
|
31
|
+
when /^Repo-pkgs/
|
32
|
+
current_row.packages = extract_single_yum_line(line).to_i
|
33
|
+
when /^Repo-size/
|
34
|
+
size = Kanrisuru::Util::Bits.normalize_size(extract_single_yum_line(line))
|
35
|
+
current_row.repo_size = size
|
36
|
+
when /^Repo-mirrors/
|
37
|
+
current_row.mirrors = extract_single_yum_line(line)
|
38
|
+
when /^Repo-metalink/
|
39
|
+
current_row.metalink = extract_single_yum_line(line)
|
40
|
+
when /^Repo-baseurl/
|
41
|
+
current_row.baseurl = extract_single_yum_line(line).split[0]
|
42
|
+
when /^Repo-expire/
|
43
|
+
current_row.expire = extract_single_yum_line(line)
|
44
|
+
when /^Repo-filename/
|
45
|
+
current_row.filename = extract_single_yum_line(line)
|
46
|
+
when /^Repo-available-pkgs/
|
47
|
+
current_row.available_packages = extract_single_yum_line(line).to_i
|
48
|
+
when /^Filter/
|
49
|
+
current_row.filters = extract_single_yum_line(line)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
rows << current_row
|
54
|
+
rows
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
module Parser
|
7
|
+
class Search < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
result = []
|
11
|
+
|
12
|
+
lines.each do |line|
|
13
|
+
line = line.gsub(/\s{2}/, '')
|
14
|
+
values = line.split(' : ')
|
15
|
+
next if values.length != 2
|
16
|
+
|
17
|
+
full_name = values[0]
|
18
|
+
name, architecture = full_name.split('.')
|
19
|
+
summary = values[1]
|
20
|
+
|
21
|
+
result << Kanrisuru::Core::Yum::PackageSearchResult.new(name, architecture, summary)
|
22
|
+
end
|
23
|
+
|
24
|
+
result
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Yum
|
6
|
+
PackageOverview = Struct.new(:package, :architecture, :version, :installed)
|
7
|
+
PackageSearchResult = Struct.new(:package, :architecture, :summary)
|
8
|
+
PackageDetail = Struct.new(
|
9
|
+
:package,
|
10
|
+
:version,
|
11
|
+
:release,
|
12
|
+
:architecture,
|
13
|
+
:install_size,
|
14
|
+
:source,
|
15
|
+
:yum_id,
|
16
|
+
:repository,
|
17
|
+
:summary,
|
18
|
+
:url,
|
19
|
+
:license,
|
20
|
+
:description
|
21
|
+
)
|
22
|
+
|
23
|
+
Repolist = Struct.new(
|
24
|
+
:id,
|
25
|
+
:name,
|
26
|
+
:status,
|
27
|
+
:revision,
|
28
|
+
:packages,
|
29
|
+
:available_packages,
|
30
|
+
:repo_size,
|
31
|
+
:mirrors,
|
32
|
+
:metalink,
|
33
|
+
:updated,
|
34
|
+
:baseurl,
|
35
|
+
:expire,
|
36
|
+
:filters,
|
37
|
+
:filename
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
data/lib/kanrisuru/core/yum.rb
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
require 'date'
|
4
4
|
|
5
|
+
require_relative 'yum/types'
|
6
|
+
require_relative 'yum/parser'
|
7
|
+
require_relative 'yum/commands'
|
8
|
+
|
5
9
|
module Kanrisuru
|
6
10
|
module Core
|
7
11
|
module Yum
|
@@ -9,40 +13,6 @@ module Kanrisuru
|
|
9
13
|
|
10
14
|
os_define :fedora, :yum
|
11
15
|
|
12
|
-
PackageOverview = Struct.new(:package, :architecture, :version, :installed)
|
13
|
-
PackageSearchResult = Struct.new(:package, :architecture, :summary)
|
14
|
-
PackageDetail = Struct.new(
|
15
|
-
:package,
|
16
|
-
:version,
|
17
|
-
:release,
|
18
|
-
:architecture,
|
19
|
-
:install_size,
|
20
|
-
:source,
|
21
|
-
:yum_id,
|
22
|
-
:repository,
|
23
|
-
:summary,
|
24
|
-
:url,
|
25
|
-
:license,
|
26
|
-
:description
|
27
|
-
)
|
28
|
-
|
29
|
-
Repolist = Struct.new(
|
30
|
-
:id,
|
31
|
-
:name,
|
32
|
-
:status,
|
33
|
-
:revision,
|
34
|
-
:packages,
|
35
|
-
:available_packages,
|
36
|
-
:repo_size,
|
37
|
-
:mirrors,
|
38
|
-
:metalink,
|
39
|
-
:updated,
|
40
|
-
:baseurl,
|
41
|
-
:expire,
|
42
|
-
:filters,
|
43
|
-
:filename
|
44
|
-
)
|
45
|
-
|
46
16
|
def yum(action, opts = {})
|
47
17
|
case action
|
48
18
|
when 'install'
|
@@ -71,319 +41,6 @@ module Kanrisuru
|
|
71
41
|
yum_upgrade(opts)
|
72
42
|
end
|
73
43
|
end
|
74
|
-
|
75
|
-
private
|
76
|
-
|
77
|
-
def yum_install(opts)
|
78
|
-
command = Kanrisuru::Command.new('yum install')
|
79
|
-
command.append_flag('-y')
|
80
|
-
|
81
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
82
|
-
command << packages
|
83
|
-
|
84
|
-
execute_shell(command)
|
85
|
-
Kanrisuru::Result.new(command)
|
86
|
-
end
|
87
|
-
|
88
|
-
def yum_localinstall(opts)
|
89
|
-
command = Kanrisuru::Command.new('yum localinstall')
|
90
|
-
yum_disable_repo(command, opts[:disable_repo])
|
91
|
-
command.append_flag('-y')
|
92
|
-
|
93
|
-
if Kanrisuru::Util.present?(opts[:repos])
|
94
|
-
repos = Kanrisuru::Util.array_join_string(opts[:repos], ' ')
|
95
|
-
command << repos
|
96
|
-
end
|
97
|
-
|
98
|
-
execute_shell(command)
|
99
|
-
|
100
|
-
Kanrisuru::Result.new(command)
|
101
|
-
end
|
102
|
-
|
103
|
-
def yum_list(opts)
|
104
|
-
command = Kanrisuru::Command.new('yum list')
|
105
|
-
|
106
|
-
yum_disable_repo(command, opts[:disable_repo])
|
107
|
-
|
108
|
-
command.append_flag('all', opts[:all])
|
109
|
-
command.append_flag('available', opts[:available])
|
110
|
-
command.append_flag('updates', opts[:updates])
|
111
|
-
command.append_flag('installed', opts[:installed])
|
112
|
-
command.append_flag('extras', opts[:extras])
|
113
|
-
command.append_flag('obsoletes', opts[:obsoletes])
|
114
|
-
|
115
|
-
command << opts[:query] if Kanrisuru::Util.present?(opts[:query])
|
116
|
-
|
117
|
-
pipe_output_newline(command)
|
118
|
-
|
119
|
-
execute_shell(command)
|
120
|
-
|
121
|
-
Kanrisuru::Result.new(command) do |cmd|
|
122
|
-
lines = cmd.to_a
|
123
|
-
result = []
|
124
|
-
lines.each do |line|
|
125
|
-
item = parse_yum_line(line)
|
126
|
-
next unless item
|
127
|
-
|
128
|
-
result << item
|
129
|
-
end
|
130
|
-
|
131
|
-
result
|
132
|
-
end
|
133
|
-
end
|
134
|
-
|
135
|
-
def yum_remove(opts)
|
136
|
-
command = Kanrisuru::Command.new('yum remove')
|
137
|
-
command.append_flag('-y')
|
138
|
-
|
139
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
140
|
-
raise ArgumentError, "can't remove yum" if packages.include?('yum')
|
141
|
-
|
142
|
-
command << packages
|
143
|
-
|
144
|
-
execute_shell(command)
|
145
|
-
Kanrisuru::Result.new(command)
|
146
|
-
end
|
147
|
-
|
148
|
-
def yum_clean(opts)
|
149
|
-
command = Kanrisuru::Command.new('yum clean')
|
150
|
-
|
151
|
-
command.append_flag('dbcache', opts[:dbcache])
|
152
|
-
command.append_flag('expire-cache', opts[:expire_cache])
|
153
|
-
command.append_flag('metadata', opts[:metadata])
|
154
|
-
command.append_flag('packages', opts[:packages])
|
155
|
-
command.append_flag('headers', opts[:headers])
|
156
|
-
command.append_flag('rpmdb', opts[:rpmdb])
|
157
|
-
command.append_flag('all', opts[:all])
|
158
|
-
|
159
|
-
execute_shell(command)
|
160
|
-
|
161
|
-
Kanrisuru::Result.new(command)
|
162
|
-
end
|
163
|
-
|
164
|
-
def yum_autoremove(_opts)
|
165
|
-
command = Kanrisuru::Command.new('yum autoremove')
|
166
|
-
command.append_flag('-y')
|
167
|
-
execute_shell(command)
|
168
|
-
Kanrisuru::Result.new(command)
|
169
|
-
end
|
170
|
-
|
171
|
-
def yum_erase(opts)
|
172
|
-
command = Kanrisuru::Command.new('yum erase')
|
173
|
-
command.append_flag('-y')
|
174
|
-
|
175
|
-
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
176
|
-
raise ArgumentError, "can't erase yum" if packages.include?('yum')
|
177
|
-
|
178
|
-
command << packages
|
179
|
-
|
180
|
-
execute_shell(command)
|
181
|
-
Kanrisuru::Result.new(command)
|
182
|
-
end
|
183
|
-
|
184
|
-
def yum_update(_opts)
|
185
|
-
command = Kanrisuru::Command.new('yum update')
|
186
|
-
command.append_flag('-y')
|
187
|
-
execute_shell(command)
|
188
|
-
Kanrisuru::Result.new(command)
|
189
|
-
end
|
190
|
-
|
191
|
-
def yum_upgrade(_opts)
|
192
|
-
command = Kanrisuru::Command.new('yum upgrade')
|
193
|
-
command.append_flag('-y')
|
194
|
-
execute_shell(command)
|
195
|
-
Kanrisuru::Result.new(command)
|
196
|
-
end
|
197
|
-
|
198
|
-
def yum_search(opts)
|
199
|
-
command = Kanrisuru::Command.new('yum search')
|
200
|
-
command.append_flag('all', opts[:all])
|
201
|
-
command << Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
202
|
-
|
203
|
-
pipe_output_newline(command)
|
204
|
-
|
205
|
-
execute_shell(command)
|
206
|
-
|
207
|
-
Kanrisuru::Result.new(command) do |cmd|
|
208
|
-
lines = cmd.to_a
|
209
|
-
|
210
|
-
result = []
|
211
|
-
lines.each do |line|
|
212
|
-
line = line.gsub(/\s{2}/, '')
|
213
|
-
values = line.split(' : ')
|
214
|
-
next if values.length != 2
|
215
|
-
|
216
|
-
full_name = values[0]
|
217
|
-
name, architecture = full_name.split('.')
|
218
|
-
summary = values[1]
|
219
|
-
|
220
|
-
result << PackageSearchResult.new(name, architecture, summary)
|
221
|
-
end
|
222
|
-
|
223
|
-
result
|
224
|
-
end
|
225
|
-
end
|
226
|
-
|
227
|
-
def yum_repolist(opts)
|
228
|
-
command = Kanrisuru::Command.new('yum repolist')
|
229
|
-
command.append_flag('--verbose')
|
230
|
-
|
231
|
-
command << Kanrisuru::Util.array_join_string(opts[:repos], ' ') if opts[:repos]
|
232
|
-
|
233
|
-
execute_shell(command)
|
234
|
-
|
235
|
-
Kanrisuru::Result.new(command) do |cmd|
|
236
|
-
lines = cmd.to_a
|
237
|
-
|
238
|
-
rows = []
|
239
|
-
current_row = nil
|
240
|
-
|
241
|
-
lines.each do |line|
|
242
|
-
case line
|
243
|
-
when /^Repo-id/
|
244
|
-
if current_row
|
245
|
-
rows << current_row
|
246
|
-
current_row = nil
|
247
|
-
end
|
248
|
-
|
249
|
-
current_row = Repolist.new
|
250
|
-
current_row.id = extract_single_yum_line(line)
|
251
|
-
when /^Repo-name/
|
252
|
-
current_row.name = extract_single_yum_line(line)
|
253
|
-
when /^Repo-revision/
|
254
|
-
current_row.revision = extract_single_yum_line(line).to_i
|
255
|
-
when /^Repo-updated/, /^Updated/
|
256
|
-
text = extract_single_yum_line(line)
|
257
|
-
current_row.updated = DateTime.parse(text)
|
258
|
-
when /^Repo-pkgs/
|
259
|
-
current_row.packages = extract_single_yum_line(line).to_i
|
260
|
-
when /^Repo-size/
|
261
|
-
size = Kanrisuru::Util::Bits.normalize_size(extract_single_yum_line(line))
|
262
|
-
current_row.repo_size = size
|
263
|
-
when /^Repo-mirrors/
|
264
|
-
current_row.mirrors = extract_single_yum_line(line)
|
265
|
-
when /^Repo-metalink/
|
266
|
-
current_row.metalink = extract_single_yum_line(line)
|
267
|
-
when /^Repo-baseurl/
|
268
|
-
current_row.baseurl = extract_single_yum_line(line).split[0]
|
269
|
-
when /^Repo-expire/
|
270
|
-
current_row.expire = extract_single_yum_line(line)
|
271
|
-
when /^Repo-filename/
|
272
|
-
current_row.filename = extract_single_yum_line(line)
|
273
|
-
when /^Repo-available-pkgs/
|
274
|
-
current_row.available_packages = extract_single_yum_line(line).to_i
|
275
|
-
when /^Filter/
|
276
|
-
current_row.filters = extract_single_yum_line(line)
|
277
|
-
end
|
278
|
-
end
|
279
|
-
|
280
|
-
rows << current_row
|
281
|
-
rows
|
282
|
-
end
|
283
|
-
end
|
284
|
-
|
285
|
-
def yum_info(opts)
|
286
|
-
command = Kanrisuru::Command.new('yum info')
|
287
|
-
command.append_flag('--quiet')
|
288
|
-
command.append_flag('installed', opts[:installed])
|
289
|
-
|
290
|
-
command << Kanrisuru::Util.array_join_string(opts[:packages], ' ') if opts[:packages]
|
291
|
-
|
292
|
-
execute_shell(command)
|
293
|
-
|
294
|
-
Kanrisuru::Result.new(command) do |cmd|
|
295
|
-
lines = cmd.to_a
|
296
|
-
|
297
|
-
rows = []
|
298
|
-
current_row = nil
|
299
|
-
description = ''
|
300
|
-
|
301
|
-
lines.each do |line|
|
302
|
-
next unless line.include?(': ')
|
303
|
-
|
304
|
-
case line
|
305
|
-
when /^Name/
|
306
|
-
unless current_row.nil?
|
307
|
-
current_row.description = description.strip
|
308
|
-
description = ''
|
309
|
-
rows << current_row
|
310
|
-
end
|
311
|
-
|
312
|
-
current_row = PackageDetail.new
|
313
|
-
current_row.package = extract_single_yum_line(line)
|
314
|
-
when /^Arch/, /^Architecture/
|
315
|
-
current_row.architecture = extract_single_yum_line(line)
|
316
|
-
when /^Version/
|
317
|
-
current_row.version = extract_single_yum_line(line)
|
318
|
-
when /^Release/
|
319
|
-
current_row.release = extract_single_yum_line(line)
|
320
|
-
when /^Source/
|
321
|
-
current_row.source = extract_single_yum_line(line)
|
322
|
-
when /^Repository/
|
323
|
-
current_row.repository = extract_single_yum_line(line)
|
324
|
-
when /^Summary/
|
325
|
-
current_row.summary = extract_single_yum_line(line)
|
326
|
-
when /^URL/, /^Url/
|
327
|
-
current_row.url = extract_single_yum_line(line)
|
328
|
-
when /^License/
|
329
|
-
current_row.license = extract_single_yum_line(line)
|
330
|
-
when /^From repo/
|
331
|
-
current_row.yum_id = extract_single_yum_line(line)
|
332
|
-
when /^Size/
|
333
|
-
size = Kanrisuru::Util::Bits.normalize_size(extract_single_yum_line(line))
|
334
|
-
current_row.install_size = size
|
335
|
-
when /^Description/
|
336
|
-
description = extract_single_yum_line(line)
|
337
|
-
else
|
338
|
-
next if line == ''
|
339
|
-
|
340
|
-
description += " #{extract_single_yum_line(line).strip}"
|
341
|
-
end
|
342
|
-
end
|
343
|
-
|
344
|
-
if current_row
|
345
|
-
current_row.description = description.strip
|
346
|
-
rows << current_row
|
347
|
-
end
|
348
|
-
|
349
|
-
rows
|
350
|
-
end
|
351
|
-
end
|
352
|
-
|
353
|
-
def extract_single_yum_line(line)
|
354
|
-
values = line.split(': ', 2)
|
355
|
-
values.length == 2 ? values[1] : ''
|
356
|
-
end
|
357
|
-
|
358
|
-
def parse_yum_line(line)
|
359
|
-
values = line.split
|
360
|
-
return if values.length != 3
|
361
|
-
return unless /^\w+\.\w+$/i.match(values[0])
|
362
|
-
|
363
|
-
full_name = values[0]
|
364
|
-
version = values[1]
|
365
|
-
|
366
|
-
name, architecture = full_name.split('.')
|
367
|
-
|
368
|
-
PackageOverview.new(name, architecture, version)
|
369
|
-
end
|
370
|
-
|
371
|
-
## Bug reported on the output of the yum command
|
372
|
-
## https://bugzilla.redhat.com/show_bug.cgi?id=584525
|
373
|
-
## that autowraps text when used in a script beyond 80 chars wide.
|
374
|
-
## Work-around with formatting by
|
375
|
-
## piping through trimming extra newline chars.
|
376
|
-
def pipe_output_newline(command)
|
377
|
-
command | "tr '\\n' '#'"
|
378
|
-
command | "sed -e 's/# / /g'"
|
379
|
-
command | "tr '#' '\\n'"
|
380
|
-
end
|
381
|
-
|
382
|
-
def yum_disable_repo(command, repo)
|
383
|
-
return unless Kanrisuru::Util.present?(repo)
|
384
|
-
|
385
|
-
command.append_flag("--disablerepo=#{repo}")
|
386
|
-
end
|
387
44
|
end
|
388
45
|
end
|
389
46
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_add_lock(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
command << 'addlock'
|
10
|
+
|
11
|
+
command.append_arg('--repo', opts[:repo])
|
12
|
+
zypper_package_type_opt(command, opts)
|
13
|
+
|
14
|
+
command << opts[:lock]
|
15
|
+
|
16
|
+
execute_shell(command)
|
17
|
+
|
18
|
+
Kanrisuru::Result.new(command)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_add_repo(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
|
10
|
+
command << 'addrepo'
|
11
|
+
|
12
|
+
command.append_flag('--check', opts[:check])
|
13
|
+
command.append_flag('--no-check', opts[:no_check])
|
14
|
+
command.append_flag('--enable', opts[:enable])
|
15
|
+
command.append_flag('--disable', opts[:disable])
|
16
|
+
command.append_flag('--refresh', opts[:refresh])
|
17
|
+
command.append_flag('--no-refresh', opts[:no_refresh])
|
18
|
+
command.append_flag('--keep-packages', opts[:keep_packages])
|
19
|
+
command.append_flag('--no-keep-packages', opts[:no_keep_packages])
|
20
|
+
command.append_flag('--gpgcheck', opts[:gpgcheck])
|
21
|
+
command.append_flag('--gpgcheck-strict', opts[:gpgcheck_strict])
|
22
|
+
command.append_flag('--gpgcheck-allow-unsigned', opts[:gpgcheck_allow_unsigned])
|
23
|
+
command.append_flag('--gpgcheck-allow-unsigned-repo', opts[:gpgcheck_allow_unsigned_repo])
|
24
|
+
command.append_flag('--gpgcheck-allow-unsigned-package', opts[:gpgcheck_allow_unsigned_package])
|
25
|
+
command.append_flag('--no-gpgcheck', opts[:no_gpgcheck])
|
26
|
+
command.append_flag('--default-gpgcheck', opts[:default_gpgcheck])
|
27
|
+
|
28
|
+
command.append_arg('--priority', opts[:priority])
|
29
|
+
|
30
|
+
zypper_repos_opt(command, opts)
|
31
|
+
|
32
|
+
execute_shell(command)
|
33
|
+
|
34
|
+
Kanrisuru::Result.new(command)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_add_service(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
command << 'addservice'
|
10
|
+
|
11
|
+
command.append_arg('--name', opts[:name])
|
12
|
+
|
13
|
+
command.append_flag('--enable', opts[:enable])
|
14
|
+
command.append_flag('--disable', opts[:disable])
|
15
|
+
command.append_flag('--refresh', opts[:refresh])
|
16
|
+
command.append_flag('--no-refresh', opts[:no_refresh])
|
17
|
+
|
18
|
+
command.append_array(opts[:services])
|
19
|
+
|
20
|
+
execute_shell(command)
|
21
|
+
|
22
|
+
Kanrisuru::Result.new(command)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_clean_cache(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
|
10
|
+
command << 'clean'
|
11
|
+
command.append_flag('--metadata', opts[:metadata])
|
12
|
+
command.append_flag('--raw-metadata', opts[:raw_metadata])
|
13
|
+
command.append_flag('--all', opts[:all])
|
14
|
+
command.append_array(opts[:repos])
|
15
|
+
|
16
|
+
execute_shell(command)
|
17
|
+
|
18
|
+
Kanrisuru::Result.new(command)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_clean_locks(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
command << 'cleanlocks'
|
10
|
+
|
11
|
+
execute_shell(command)
|
12
|
+
|
13
|
+
Kanrisuru::Result.new(command)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_dist_upgrade(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
command << 'dist-upgrade'
|
10
|
+
|
11
|
+
command.append_flag('--auto-agree-with-licenses', opts[:auto_agree_with_licenses])
|
12
|
+
command.append_flag('--auto-agree-with-product-licenses', opts[:auto_agree_with_product_licenses])
|
13
|
+
command.append_flag('--dry-run', opts[:dry_run])
|
14
|
+
|
15
|
+
zypper_repos_opt(command, opts)
|
16
|
+
zypper_solver_opts(command, opts)
|
17
|
+
zypper_expert_opts(command, opts)
|
18
|
+
|
19
|
+
execute_shell(command)
|
20
|
+
|
21
|
+
Kanrisuru::Result.new(command)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
def zypper_info(opts)
|
7
|
+
command = Kanrisuru::Command.new('zypper')
|
8
|
+
zypper_global_opts(command, opts)
|
9
|
+
command << 'info'
|
10
|
+
|
11
|
+
zypper_repos_opt(command, opts)
|
12
|
+
zypper_package_type_opt(command, opts)
|
13
|
+
|
14
|
+
packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
|
15
|
+
command << packages
|
16
|
+
|
17
|
+
execute_shell(command)
|
18
|
+
|
19
|
+
Kanrisuru::Result.new(command) do |cmd|
|
20
|
+
Parser::Info.parse(cmd)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|