Creating a custom Yum Repo that contains Uptycs

Creating a custom Yum Repo that contains Uptycs

Overview


This document details steps to create a custom yum repository containing the Uptycs osquery agent.


Procedure


Note : Steps provided below can be placed into a Chef recipe.


# get the createrepo package (if not installed already)
yum -y install createrepo

# Create local repo and add uptycs agent rpm 
vi /etc/yum.repos.d/custom.repo

# baseurl file location can be a file share, e.g. /<sharepath>/agentrepo instead of  /root/customrepo/
[customrepo]
name=Custom Agent Repository
baseurl=file:///root/customrepo/
enabled=1
gpgcheck=0

# copy uptycs agent (osquery-3.2.6.51-Uptycs.rpm) to /root/customrepo (or fileshare location)

# run the command to create the yum repo 
createrepo /root/customrepo
# or: createrepo /<sharepath>/agentrepo
    • Related Articles

    • Install Uptycs agent with Chef

      Overview This document outlines the steps / procedure to install Uptycs osquery agent using Chef Pre-requisite(s) yum repo containing Uptycs - Creating a custom Yum Repo that contains Uptycs Details Following chef recipe can be used to install the ...
    • Installing Uptycs Agent on MacOS using JAMF

      Overview This document outlines the procedure on how to install the Uptycs osquery agent on macOS using JAMF. Procedure  Installation Download the installer. Login to JAMF. You must have a JAMF Plus plan to be able to deploy custom macOS packages     ...
    • How to download Uptycs agent

      Overview This document outlines the procedure to download Uptycs agent (osquery) for different OS. Details 1:Login to Uptycs portal 2: Click on the Uptycs Icon on the left pane of the screen and Click on Software Download: 3: We provide separate ...
    • Installing Uptycs osquery on Kubernetes

      Copy the your YAML manifest file (uptycs_osq_daemonset_<customer>.yaml) to the kubernetes client machine (a machine with the command: kubectl).   1. Create the daemon set using following command:    kubectl create -f ...
    • Provisioning roles through Uptycs portal

      Overview Starting with Uptycs portal release 46025, Uptycs provides entity level granular user permissions through roles. Roles can be provisioned / modified by navigating to Roles GUI / API. This document outlines the process to create roles using ...