Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Latest commit

 

History

History
64 lines (45 loc) · 1.51 KB

README.md

File metadata and controls

64 lines (45 loc) · 1.51 KB

Arch Linux AUR PKGBUILD for Mondoo

This repository holds the PKGBUILD generator and the PKGBUILD files from https://aur.archlinux.org/packages/mondoo/

Install cnquery & cnspec

The packages are published on AUR:

Installation with MakePKG

# Install cnquery
git clone https://aur.archlinux.org/cnquery 
 cd cnquery 
 makepkg -si
 
# Install cnsepc (requires cnquery to be installed)
git clone https://aur.archlinux.org/cnspec 
 cd cnspec
 makepkg -si

Installation with Yay

We highly recommend using one of the AUR_helpers like yay to install the packages. Note that cnquery is a dependancy of cnspec, so Yay will automatically install it for you.

# install cnquery
yay -Ss cnquery

# install cnspec
yay -Ss cnspec

Test github action

  • create the .secret file with the following content:
AUR_USERNAME="Patrick Münch"
AUR_EMAIL="[email protected]"
AUR_SSH_PRIVATE_KEY="-----BEGIN OPENSSH PRIVATE KEY-----\n....\n-----END OPENSSH PRIVATE KEY-----\n"
  • create the sample-event.json file with the following content:
{
  "action": "workflow_dispatch",
  "inputs": {
      "version": "6.13.1"
  }
}
  • run the following command:
act -j aur-publish --secret-file .secrets --eventpath sample-event.json -v