$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Puppet Installation in Debian Bookworm – Step-by-step

August 28, 2023 | By the+gnu+linux+evangelist.

Installing

  1. 2. Enabling Puppet Repository

    Add Puppet Repository for Debian GNU/Linux

    Enabling Puppet Repo for Debian
  2. 3. Installing Puppet

    Then to Install Puppet in Debian
    Simply run:

    sudo apt install puppetserver puppet-agent
  3. 4. Amending Root Path

    Again Append Puppet into the Sudo Path
    So to enable it Configure the sudoers File with

    sudo visudo

    And append to the secure_path Var definition:

    :/opt/puppetlabs/bin

    Save & Exit.
    Again amend the User’s Path with:

    echo "export PATH=$PATH:/opt/puppetlabs/bin" >> ~/.bashrc
  4. 5. Starting Puppet Services

    Next to Puppet Services
    Run:

    sudo systemctl start puppet

    And again:

    sudo systemctl start puppetserver

    Use the same Commands with “enable” to get them Started at Boot.

Contents