- update build tool with github_release_pattern - update puppet-initial to reduce impact on upgrades
7 lines
143 B
Bash
Executable File
7 lines
143 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Only run on fresh install, not upgrade
|
|
if [ "$1" -eq 1 ]; then
|
|
systemctl stop puppet
|
|
systemctl disable puppet
|
|
fi
|