Installing with a Debian or Ubuntu Repository

These instructions explain how to set up a repository on systems running either Debian or Ubuntu so that you can manage automatic updates for the Server Suite agent. First you configure the repository and then you can install the Server Suite packages.

You can create the repository automatically with a script or set it up manually.

(missing or bad snippet)(missing or bad snippet)

Creating the Debian or Ubuntu Repository Automatically with a Script

To create a Debian or Ubuntu repository automatically, run the command below:

Enter your repository URL token in place of URLTOKEN.

Copy
 $ curl -1sLf \
 'https://repo.delinea.com/URLTOKEN/deb/setup.deb.sh' \
 | sudo -E bash

The configuration details are in a separate file in the /etc/apt/sources.list.d directory, such as centrify-deb.list.

Creating the Debian or Ubuntu Repository Manually

To create the Debian or Ubuntu repository manually:

  1. Update the /etc/apt/sources.list file to include the official Delinea package repository.

    Copy
    # deb https://repo.delinea.com/URLTOKEN/deb/deb/debian any-version main
  2. Import your GPG key and update the repository:

    Copy
    # bash -c 'wget -O - https://downloads.centrify.com/products/RPM-GPG-KEY-centrify | apt-key add -'
  3. Comment out the no-debsig line in /etc/dpkg/dpkg.cfg to enable GPG signature validation:

    Copy
    # grep no-debsig /etc/dpkg/dpkg.cfg
    #no-debsig
  4. Clean and update the local archives:

    Copy
    # apt-get clean
    # apt-get update

    The configuration details are in the /etc/apt/sources.list file.

    Now you're ready to install the agent.

Installing the Agent

To install the agent on Debian or Ubuntu:

  1. Execute the apt list command to verify the repository connection.

    Copy
     # apt list --all-versions | grep centrify
  2. Run the apt install or apt-get install commands to install Cloud Suite packages.

    For example:

    Copy
    # apt install centrifycc
    # apt-get install centrifycc-25.1-xxx

 

Uninstalling the Agent

To uninstall the Cloud Suite Agent for *NIX rpm, you can use either

  • The remove command to delete the Cloud Suite Agent for *NIX package

    or

  • The purge command to also delete any configuration files.

For example:

Copy
# apt purge centrifycc=25.1-xxx