kanrisuru 0.13.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
  4. data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
  5. data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
  6. data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
  7. data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
  8. data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
  9. data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
  10. data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
  11. data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
  12. data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
  13. data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
  14. data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
  15. data/lib/kanrisuru/core/apt/commands.rb +14 -0
  16. data/lib/kanrisuru/core/apt/parser.rb +6 -0
  17. data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
  18. data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
  19. data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
  20. data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
  21. data/lib/kanrisuru/core/apt/types.rb +36 -0
  22. data/lib/kanrisuru/core/apt.rb +4 -284
  23. data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
  24. data/lib/kanrisuru/core/archive/commands.rb +3 -0
  25. data/lib/kanrisuru/core/archive/types.rb +9 -0
  26. data/lib/kanrisuru/core/archive.rb +3 -121
  27. data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
  28. data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
  29. data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
  30. data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
  31. data/lib/kanrisuru/core/disk/commands.rb +6 -0
  32. data/lib/kanrisuru/core/disk/parser.rb +6 -0
  33. data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
  34. data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
  35. data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
  36. data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
  37. data/lib/kanrisuru/core/disk/types.rb +21 -0
  38. data/lib/kanrisuru/core/disk.rb +5 -290
  39. data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
  40. data/lib/kanrisuru/core/dmi/commands.rb +3 -0
  41. data/lib/kanrisuru/core/dmi/parser.rb +3 -0
  42. data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
  43. data/lib/kanrisuru/core/dmi/types.rb +361 -0
  44. data/lib/kanrisuru/core/dmi.rb +4 -522
  45. data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
  46. data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
  47. data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
  48. data/lib/kanrisuru/core/file/commands/link.rb +25 -0
  49. data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
  50. data/lib/kanrisuru/core/file/commands/move.rb +48 -0
  51. data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
  52. data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
  53. data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
  54. data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
  55. data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
  56. data/lib/kanrisuru/core/file/commands.rb +29 -0
  57. data/lib/kanrisuru/core/file/parser.rb +3 -0
  58. data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
  59. data/lib/kanrisuru/core/file/types.rb +9 -0
  60. data/lib/kanrisuru/core/file.rb +4 -312
  61. data/lib/kanrisuru/core/find/commands/find.rb +97 -0
  62. data/lib/kanrisuru/core/find/commands.rb +3 -0
  63. data/lib/kanrisuru/core/find/constants.rb +9 -0
  64. data/lib/kanrisuru/core/find/parser.rb +3 -0
  65. data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
  66. data/lib/kanrisuru/core/find/types.rb +9 -0
  67. data/lib/kanrisuru/core/find.rb +5 -97
  68. data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
  69. data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
  70. data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
  71. data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
  72. data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
  73. data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
  74. data/lib/kanrisuru/core/group/commands.rb +8 -0
  75. data/lib/kanrisuru/core/group/parser.rb +4 -0
  76. data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
  77. data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
  78. data/lib/kanrisuru/core/group/types.rb +10 -0
  79. data/lib/kanrisuru/core/group.rb +4 -81
  80. data/lib/kanrisuru/core/ip/commands/address.rb +69 -0
  81. data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
  82. data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
  83. data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
  84. data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
  85. data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
  86. data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
  87. data/lib/kanrisuru/core/ip/commands.rb +24 -0
  88. data/lib/kanrisuru/core/ip/constants.rb +13 -0
  89. data/lib/kanrisuru/core/ip/parser.rb +10 -0
  90. data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
  91. data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
  92. data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
  93. data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
  94. data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
  95. data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
  96. data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
  97. data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
  98. data/lib/kanrisuru/core/ip/types.rb +46 -0
  99. data/lib/kanrisuru/core/ip.rb +5 -995
  100. data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
  101. data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
  102. data/lib/kanrisuru/core/mount/commands.rb +49 -0
  103. data/lib/kanrisuru/core/mount.rb +2 -125
  104. data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
  105. data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
  106. data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
  107. data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
  108. data/lib/kanrisuru/core/path/commands/which.rb +19 -0
  109. data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
  110. data/lib/kanrisuru/core/path/commands.rb +8 -0
  111. data/lib/kanrisuru/core/path/parser.rb +4 -0
  112. data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
  113. data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
  114. data/lib/kanrisuru/core/path/types.rb +12 -0
  115. data/lib/kanrisuru/core/path.rb +4 -121
  116. data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
  117. data/lib/kanrisuru/core/socket/commands.rb +3 -0
  118. data/lib/kanrisuru/core/socket/constants.rb +29 -0
  119. data/lib/kanrisuru/core/socket/parser.rb +3 -0
  120. data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
  121. data/lib/kanrisuru/core/socket/types.rb +18 -0
  122. data/lib/kanrisuru/core/socket.rb +5 -164
  123. data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
  124. data/lib/kanrisuru/core/stat/commands.rb +3 -0
  125. data/lib/kanrisuru/core/stat/parser.rb +3 -0
  126. data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
  127. data/lib/kanrisuru/core/stat/types.rb +14 -0
  128. data/lib/kanrisuru/core/stat.rb +4 -81
  129. data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
  130. data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
  131. data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
  132. data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
  133. data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
  134. data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
  135. data/lib/kanrisuru/core/stream/commands.rb +27 -0
  136. data/lib/kanrisuru/core/stream/parser.rb +4 -0
  137. data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
  138. data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
  139. data/lib/kanrisuru/core/stream.rb +3 -104
  140. data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
  141. data/lib/kanrisuru/core/system/commands/free.rb +25 -0
  142. data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
  143. data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
  144. data/lib/kanrisuru/core/system/commands/last.rb +31 -0
  145. data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
  146. data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
  147. data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
  148. data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
  149. data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
  150. data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
  151. data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
  152. data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
  153. data/lib/kanrisuru/core/system/commands/w.rb +24 -0
  154. data/lib/kanrisuru/core/system/commands.rb +34 -0
  155. data/lib/kanrisuru/core/system/parser.rb +11 -0
  156. data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
  157. data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
  158. data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
  159. data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
  160. data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
  161. data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
  162. data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
  163. data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
  164. data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
  165. data/lib/kanrisuru/core/system/types.rb +108 -0
  166. data/lib/kanrisuru/core/system.rb +4 -687
  167. data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
  168. data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
  169. data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
  170. data/lib/kanrisuru/core/transfer/commands.rb +5 -0
  171. data/lib/kanrisuru/core/transfer/constants.rb +10 -0
  172. data/lib/kanrisuru/core/transfer.rb +3 -199
  173. data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
  174. data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
  175. data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
  176. data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
  177. data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
  178. data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
  179. data/lib/kanrisuru/core/user/commands.rb +8 -0
  180. data/lib/kanrisuru/core/user/parser.rb +4 -0
  181. data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
  182. data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
  183. data/lib/kanrisuru/core/user/types.rb +11 -0
  184. data/lib/kanrisuru/core/user.rb +4 -182
  185. data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
  186. data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
  187. data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
  188. data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
  189. data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
  190. data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
  191. data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
  192. data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
  193. data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
  194. data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
  195. data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
  196. data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
  197. data/lib/kanrisuru/core/yum/commands.rb +39 -0
  198. data/lib/kanrisuru/core/yum/parser.rb +7 -0
  199. data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
  200. data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
  201. data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
  202. data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
  203. data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
  204. data/lib/kanrisuru/core/yum/types.rb +41 -0
  205. data/lib/kanrisuru/core/yum.rb +4 -347
  206. data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
  207. data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
  208. data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
  209. data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
  210. data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
  211. data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
  212. data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
  213. data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
  214. data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
  215. data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
  216. data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
  217. data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
  218. data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
  219. data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
  220. data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
  221. data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
  222. data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
  223. data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
  224. data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
  225. data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
  226. data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
  227. data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
  228. data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
  229. data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
  230. data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
  231. data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
  232. data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
  233. data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
  234. data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
  235. data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
  236. data/lib/kanrisuru/core/zypper/commands.rb +109 -0
  237. data/lib/kanrisuru/core/zypper/constants.rb +19 -0
  238. data/lib/kanrisuru/core/zypper/parser.rb +11 -0
  239. data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
  240. data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
  241. data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
  242. data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
  243. data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
  244. data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
  245. data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
  246. data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
  247. data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
  248. data/lib/kanrisuru/core/zypper/types.rb +88 -0
  249. data/lib/kanrisuru/core/zypper.rb +5 -998
  250. data/lib/kanrisuru/version.rb +1 -1
  251. data/spec/unit/util_spec.rb +16 -0
  252. metadata +231 -2
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_install(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'install'
10
+
11
+ zypper_repos_opt(command, opts)
12
+ zypper_package_type_opt(command, opts)
13
+
14
+ command.append_arg('-n', opts[:name])
15
+ command.append_arg('-f', opts[:force])
16
+ command.append_flag('--oldpackage', opts[:oldpackage])
17
+ command.append_arg('--from', opts[:from])
18
+ command.append_arg('--capability', opts[:capability])
19
+ command.append_flag('--auto-agree-with-licenses', opts[:auto_agree_with_licenses])
20
+ command.append_flag('--auto-agree-with-product-licenses', opts[:auto_agree_with_product_licenses])
21
+ command.append_flag('--replacefiles', opts[:replacefiles])
22
+
23
+ command.append_flag('--dry-run', opts[:dry_run])
24
+ command.append_flag('--allow-unsigned-rpm', opts[:allow_unsigned_rpm])
25
+
26
+ zypper_solver_opts(command, opts)
27
+ zypper_download_and_install_opts(command, opts)
28
+ zypper_expert_opts(command, opts)
29
+
30
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
31
+ command << packages
32
+
33
+ execute_shell(command)
34
+
35
+ Kanrisuru::Result.new(command)
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_install_new_recommends(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'install-new-recommends'
10
+
11
+ command.append_flag('--dry-run', opts[:dry_run])
12
+
13
+ zypper_repos_opt(command, opts)
14
+ zypper_solver_opts(command, opts)
15
+ zypper_expert_opts(command, opts)
16
+
17
+ execute_shell(command)
18
+
19
+ Kanrisuru::Result.new(command)
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_list_locks(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command.append_flag('--quiet')
10
+ command << 'locks'
11
+
12
+ command.append_flag('--matches')
13
+
14
+ execute_shell(command)
15
+
16
+ Kanrisuru::Result.new(command) do |cmd|
17
+ Parser::ListLocks.parse(cmd)
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_list_patches(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command.append_flag('--quiet')
10
+ command << 'list-patches'
11
+
12
+ command.append_arg('--bugzilla', opts[:bugzilla])
13
+ command.append_arg('--cve', opts[:cve])
14
+ command.append_arg('--date', opts[:date])
15
+
16
+ zypper_patch_category_opt(command, opts)
17
+ zypper_patch_severity_opt(command, opts)
18
+
19
+ command.append_flag('--issues', opts[:issues])
20
+ command.append_flag('--all', opts[:all])
21
+ command.append_flag('--with-optional', opts[:with_optional])
22
+ command.append_flag('--without-optional', opts[:without_optional])
23
+
24
+ zypper_repos_opt(command, opts)
25
+
26
+ execute_shell(command)
27
+
28
+ Kanrisuru::Result.new(command) do |cmd|
29
+ Parser::ListPatches.parse(cmd)
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_list_repos(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'repos'
11
+ command.append_flag('--details')
12
+
13
+ execute_shell(command)
14
+
15
+ Kanrisuru::Result.new(command) do |cmd|
16
+ Parser::ListRepos.parse(cmd)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_list_services(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'services'
11
+ command.append_flag('--details')
12
+
13
+ execute_shell(command)
14
+
15
+ Kanrisuru::Result.new(command) do |cmd|
16
+ Parser::ListServices.parse(cmd)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_list_updates(opts)
7
+ return zypper_list_patches(opts) if opts[:type] == 'patch'
8
+
9
+ command = Kanrisuru::Command.new('zypper')
10
+ zypper_global_opts(command, opts)
11
+ command.append_flag('--quiet')
12
+ command << 'list-updates'
13
+
14
+ zypper_repos_opt(command, opts)
15
+ zypper_package_type_opt(command, opts)
16
+
17
+ command.append_flag('--all', opts[:all])
18
+ command.append_flag('--best-effort', opts[:best_effort])
19
+
20
+ zypper_expert_opts(command, opts)
21
+
22
+ execute_shell(command)
23
+
24
+ Kanrisuru::Result.new(command) do |cmd|
25
+ Parser::ListUpdates.parse(cmd)
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_modify_repo(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'modifyrepo'
11
+
12
+ command.append_arg('--name', opts[:name])
13
+ command.append_arg('--priority', opts[:priority])
14
+
15
+ command.append_flag('--enable', opts[:enable])
16
+ command.append_flag('--disable', opts[:disable])
17
+ command.append_flag('--refresh', opts[:refresh])
18
+ command.append_flag('--no-refresh', opts[:no_refresh])
19
+ command.append_flag('--keep-packages', opts[:keep_packages])
20
+ command.append_flag('--no-keep-packages', opts[:no_keep_packages])
21
+
22
+ command.append_flag('--gpgcheck', opts[:gpgcheck])
23
+ command.append_flag('--gpgcheck-strict', opts[:gpgcheck_strict])
24
+ command.append_flag('--gpgcheck-allow-unsigned', opts[:gpgcheck_allow_unsigned])
25
+ command.append_flag('--gpgcheck-allow-unsigned-repo', opts[:gpgcheck_allow_unsigned_repo])
26
+ command.append_flag('--gpgcheck-allow-unsigned-package', opts[:gpgcheck_allow_unsigned_package])
27
+ command.append_flag('--no-gpgcheck', opts[:no_gpgcheck])
28
+ command.append_flag('--default-gpgcheck', opts[:default_gpgcheck])
29
+
30
+ command.append_flag('--all', opts[:all])
31
+ command.append_flag('--local', opts[:local])
32
+ command.append_flag('--remote', opts[:remote])
33
+
34
+ if Kanrisuru::Util.present?(opts[:medium_type])
35
+ raise ArgumentError, 'Invalid medium type' unless MEDIUM_TYPES.include?(opts[:medium_type])
36
+
37
+ command.append_arg('--medium-type', opts[:medium_type])
38
+ end
39
+
40
+ command.append_array(opts[:repos])
41
+
42
+ execute_shell(command)
43
+
44
+ Kanrisuru::Result.new(command)
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_modify_service(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'modifyservice'
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
+ command.append_flag('--all', opts[:all])
18
+ command.append_flag('--local', opts[:local])
19
+ command.append_flag('--remote', opts[:remote])
20
+
21
+ command.append_arg('--ar-to-enable', opts[:ar_to_enable])
22
+ command.append_arg('--ar-to-disable', opts[:ar_to_disable])
23
+ command.append_arg('--rr-to-enable', opts[:rr_to_enable])
24
+ command.append_arg('--rr-to-disable', opts[:rr_to_disable])
25
+ command.append_arg('--cl-to-enable', opts[:cl_to_enable])
26
+ command.append_arg('--cl-to-disable', opts[:cl_to_disable])
27
+
28
+ if Kanrisuru::Util.present?(opts[:medium_type])
29
+ raise ArgumentError, 'Invalid medium type' unless MEDIUM_TYPES.include?(opts[:medium_type])
30
+
31
+ command.append_arg('--medium-type', opts[:medium_type])
32
+ end
33
+
34
+ execute_shell(command)
35
+
36
+ Kanrisuru::Result.new(command)
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_patch(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ command.append_valid_exit_code(EXIT_INF_REBOOT_NEEDED)
9
+ command.append_valid_exit_code(EXIT_INF_RESTART_NEEDED)
10
+ zypper_global_opts(command, opts)
11
+
12
+ command << 'patch'
13
+
14
+ command.append_flag('--updatestack-only', opts[:updatestack_only])
15
+ command.append_flag('--with-update', opts[:with_update])
16
+ command.append_flag('--with-optional', opts[:with_optional])
17
+ command.append_flag('--without-optional', opts[:without_optional])
18
+ command.append_flag('--replacefiles', opts[:replacefiles])
19
+ command.append_flag('--dry-run', opts[:dry_run])
20
+
21
+ command.append_flag('--auto-agree-with-licenses', opts[:auto_agree_with_licenses])
22
+ command.append_flag('--auto-agree-with-product-licenses', opts[:auto_agree_with_product_licenses])
23
+
24
+ command.append_arg('--bugzilla', opts[:bugzilla])
25
+ command.append_arg('--cve', opts[:cve])
26
+ command.append_arg('--date', opts[:date])
27
+
28
+ zypper_patch_category_opt(command, opts)
29
+ zypper_patch_severity_opt(command, opts)
30
+ zypper_repos_opt(command, opts)
31
+ zypper_solver_opts(command, opts)
32
+ zypper_expert_opts(command, opts)
33
+
34
+ execute_shell(command)
35
+
36
+ Kanrisuru::Result.new(command)
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_patch_check(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ command.append_valid_exit_code(EXIT_INF_UPDATE_NEEDED)
9
+ command.append_valid_exit_code(EXIT_INF_SEC_UPDATE_NEEDED)
10
+
11
+ zypper_global_opts(command, opts)
12
+ command.append_flag('--quiet')
13
+ command << 'patch-check'
14
+
15
+ command.append_flag('--updatestack-only', opts[:updatestack_only])
16
+ command.append_flag('--with-optional', opts[:with_optional])
17
+ command.append_flag('--without-optional', opts[:without_optional])
18
+
19
+ zypper_repos_opt(command, opts)
20
+
21
+ execute_shell(command)
22
+
23
+ Kanrisuru::Result.new(command) do |cmd|
24
+ Parser::PatchCheck.parse(cmd)
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_purge_kernels(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'purge-kernels'
10
+ command.append_flag('--dry-run', opts[:dry_run])
11
+
12
+ execute_shell(command)
13
+
14
+ Kanrisuru::Result.new(command)
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_refresh_repos(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'refresh'
11
+
12
+ command.append_flag('--force', opts[:force])
13
+ command.append_flag('--force-build', opts[:force_build])
14
+ command.append_flag('--force-download', opts[:force_download])
15
+ command.append_flag('--build-only', opts[:build_only])
16
+ command.append_flag('--download-only', opts[:download_only])
17
+
18
+ execute_shell(command)
19
+
20
+ Kanrisuru::Result.new(command)
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_refresh_services(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'refresh-services'
11
+ command.append_flag('--force', opts[:force])
12
+ command.append_flag('--with-repos', opts[:with_repos])
13
+ command.append_flag('--restore-status', opts[:restore_status])
14
+
15
+ execute_shell(command)
16
+
17
+ Kanrisuru::Result.new(command)
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_remove(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'remove'
10
+
11
+ command.append_flag('--dry-run', opts[:dry_run])
12
+ command.append_flag('--capability', opts[:capability])
13
+
14
+ zypper_repos_opt(command, opts)
15
+ zypper_package_type_opt(command, opts)
16
+ zypper_solver_opts(command, opts)
17
+
18
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
19
+ command << packages
20
+
21
+ execute_shell(command)
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_remove_lock(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'removelock'
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,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_remove_repo(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'removerepo'
11
+
12
+ command.append_flag('--loose-auth', opts[:loose_auth])
13
+ command.append_flag('--loose-query', opts[:loose_query])
14
+ command.append_flag('--all', opts[:all])
15
+ command.append_flag('--local', opts[:local])
16
+ command.append_flag('--remote', opts[:remote])
17
+
18
+ if Kanrisuru::Util.present?(opts[:media_type])
19
+ raise ArgumentError, 'Invalid media type' unless ZYPPER_MEDIA_TYPES.include?(opts[:media_type])
20
+
21
+ command.append_arg('--media-type', opts[:media_type])
22
+ end
23
+
24
+ command.append_array(opts[:repos])
25
+
26
+ execute_shell(command)
27
+
28
+ Kanrisuru::Result.new(command)
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_remove_service(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'removeservice'
11
+ command.append_flag('--loose-auth', opts[:loose_auth])
12
+ command.append_flag('--loose-query', opts[:loose_query])
13
+ command.append_array(opts[:services])
14
+
15
+ execute_shell(command)
16
+
17
+ Kanrisuru::Result.new(command)
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_rename_repo(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+
10
+ command << 'renamerepo'
11
+ command << opts[:repo]
12
+ command << opts[:alias]
13
+
14
+ execute_shell(command)
15
+
16
+ Kanrisuru::Result.new(command)
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_search(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'search'
10
+
11
+ command.append_flag('--details')
12
+ command.append_flag('--match-substrings', opts[:match_substrings])
13
+ command.append_flag('--match-words', opts[:match_words])
14
+ command.append_flag('--match-exact', opts[:match_exact])
15
+ command.append_flag('--provides', opts[:provides])
16
+ command.append_flag('--requires', opts[:requires])
17
+ command.append_flag('--recommends', opts[:recommends])
18
+ command.append_flag('--suggests', opts[:suggests])
19
+ command.append_flag('--conflicts', opts[:conflicts])
20
+ command.append_flag('--obsoletes', opts[:obsoletes])
21
+ command.append_flag('--supplements', opts[:supplements])
22
+ command.append_flag('--provides-pkg', opts[:provides_pkg])
23
+ command.append_flag('--requires-pkg', opts[:requires_pkg])
24
+ command.append_flag('--recommends-pkg', opts[:recommends_pkg])
25
+ command.append_flag('--supplements-pkg', opts[:supplements_pkg])
26
+ command.append_flag('--conflicts-pkg', opts[:conflicts_pkg])
27
+ command.append_flag('--obsoletes-pkg', opts[:obsoletes_pkg])
28
+ command.append_flag('--suggests-pkg', opts[:suggests_pkg])
29
+ command.append_flag('--name', opts[:name])
30
+ command.append_flag('--file-list', opts[:file_list])
31
+ command.append_flag('--search-descriptions', opts[:search_descriptions])
32
+ command.append_flag('--case-sensitive', opts[:case_sensitive])
33
+ command.append_flag('--installed-only', opts[:installed_only])
34
+ command.append_flag('--not-installed-only', opts[:not_installed_only])
35
+ command.append_flag('--sort-by-name', opts[:sort_by_name])
36
+ command.append_flag('--sort-by-repo', opts[:sort_by_repo])
37
+
38
+ zypper_repos_opt(command, opts)
39
+ zypper_package_type_opt(command, opts)
40
+
41
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
42
+ command << packages
43
+
44
+ execute_shell(command)
45
+
46
+ Kanrisuru::Result.new(command) do |cmd|
47
+ Parser::Search.parse(cmd)
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_source_install(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'sourceinstall'
10
+
11
+ zypper_repos_opt(command, opts)
12
+ command.append_flag('--build-deps-only', opts[:build_deps_only])
13
+ command.append_flag('--no-build-deps', opts[:no_build_deps])
14
+ command.append_flag('--download-only', opts[:download_only])
15
+
16
+ execute_shell(command)
17
+
18
+ Kanrisuru::Result.new(command)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_update(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'update'
10
+
11
+ zypper_repos_opt(command, opts)
12
+ zypper_package_type_opt(command, opts)
13
+
14
+ command.append_flag('--replacefiles', opts[:replacefiles])
15
+ command.append_flag('--dry-run', opts[:dry_run])
16
+ command.append_flag('--best-effort', opts[:best_effort])
17
+
18
+ zypper_solver_opts(command, opts)
19
+ zypper_expert_opts(command, opts)
20
+
21
+ execute_shell(command)
22
+
23
+ Kanrisuru::Result.new(command)
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Zypper
6
+ def zypper_verify(opts)
7
+ command = Kanrisuru::Command.new('zypper')
8
+ zypper_global_opts(command, opts)
9
+ command << 'verify'
10
+
11
+ command.append_flag('--dry-run', opts[:dry_run])
12
+
13
+ zypper_repos_opt(command, opts)
14
+ zypper_solver_opts(command, opts)
15
+ zypper_expert_opts(command, opts)
16
+
17
+ execute_shell(command)
18
+
19
+ Kanrisuru::Result.new(command)
20
+ end
21
+ end
22
+ end
23
+ end