vagrant/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb
oss-core-libraries-dashboard[bot] ea57f40b89
Some checks failed
/ sync-acceptance (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.1 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.2 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.3 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.4 (push) Has been cancelled
[COMPLIANCE] Update Copyright and License Headers (#13752)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-04 17:07:40 +05:30

37 lines
1.3 KiB
Ruby

# Copyright IBM Corp. 2010, 2025
# SPDX-License-Identifier: BUSL-1.1
require "log4r"
module VagrantPlugins
module CFEngine
module Cap
module Linux
module CFEngineNeedsBootstrap
def self.cfengine_needs_bootstrap(machine, config)
logger = Log4r::Logger.new("vagrant::plugins::cfengine::cap_linux_cfengine_bootstrap")
machine.communicate.tap do |comm|
# We hardcode fixing the permissions on /var/cfengine/ppkeys/, if it exists,
# because otherwise CFEngine will fail to bootstrap.
if comm.test("test -d /var/cfengine/ppkeys", sudo: true)
logger.debug("Fixing permissions on /var/cfengine/ppkeys")
comm.sudo("chmod -R 600 /var/cfengine/ppkeys")
end
logger.debug("Checking if CFEngine is bootstrapped...")
bootstrapped = comm.test("test -f /var/cfengine/policy_server.dat", sudo: true)
if bootstrapped && !config.force_bootstrap
logger.info("CFEngine already bootstrapped, no need to do it again")
return false
end
logger.info("CFEngine needs bootstrap.")
return true
end
end
end
end
end
end
end