You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
550 B
10 lines
550 B
#!/bin/sh
|
|
|
|
apt install -y lsb-release curl && curl -sL -o /var/cache/apt/archives/puppet7-release-`lsb_release -c -s`.deb https://apt.puppet.com/puppet7-release-`lsb_release -c -s`.deb && dpkg -i /var/cache/apt/archives/puppet7-release-`lsb_release -c -s`.deb && apt update && apt install -y puppet-agent && apt clean
|
|
echo "[agent]
|
|
server = foreman.altinea.fr
|
|
runinterval = 600
|
|
listen = false
|
|
pluginsync = true
|
|
report = true"> /etc/puppetlabs/puppet/puppet.conf
|
|
/opt/puppetlabs/bin/puppet resource service puppet ensure=running enable=true
|