using curl to query package manager for location of package under /etc/packages | Community
Skip to main content
Level 2
December 16, 2019
Solved

using curl to query package manager for location of package under /etc/packages

  • December 16, 2019
  • 3 replies
  • 3494 views

Uploaded/installed packages are placed in function specific folders.

 

How can I query via curl to get the folder location?

 

I would hate to have to install/locate manually to get that location before replicating.

Best answer by Nirmal_Jose

Packages are always grouped based on 'group' property of the package. For example, core components have mentioned group as 'adobe/cq60' and is placed at /etc/packages/adobe/cq60/core.wcm.components.config-2.2.2.zip

 

If you want the full list of packages you can use the package list API at  http://localhost:4502/crx/packmgr/list.jsp

3 replies

Nirmal_Jose
Adobe Employee
Nirmal_JoseAdobe EmployeeAccepted solution
Adobe Employee
December 16, 2019

Packages are always grouped based on 'group' property of the package. For example, core components have mentioned group as 'adobe/cq60' and is placed at /etc/packages/adobe/cq60/core.wcm.components.config-2.2.2.zip

 

If you want the full list of packages you can use the package list API at  http://localhost:4502/crx/packmgr/list.jsp

Adobe Employee
December 17, 2019

You can use the GET command below:

 

 http://<host>:<port>/etc/packages/my_packages.infinity.json

 

Where "my_packages" is one of the folders under /etc/packages where packages will be stored. You can replace this with your custom folder name.

sunjot16
Adobe Employee
Adobe Employee
December 17, 2019
ArobMFSAuthor
Level 2
December 18, 2019
I am able to use curl to upload/install packages. My issue is in how to use the requests module of Python v3.