mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 15:32:18 +00:00
0689c791d8
* Introduce optional support for ansible.cfg * Add missing ansible.cfg local & remote tests * Update Readme * Fix broken local test --------- Co-authored-by: thehedhly <thehedhly@users.noreply.github.com>
114 lines
3.9 KiB
JavaScript
114 lines
3.9 KiB
JavaScript
const core = require('@actions/core')
|
|
const exec = require('@actions/exec')
|
|
const yaml = require('yaml')
|
|
const fs = require('fs')
|
|
const os = require('os')
|
|
|
|
async function main() {
|
|
try {
|
|
const playbook = core.getInput("playbook", { required: true })
|
|
const requirements = core.getInput("requirements")
|
|
const directory = core.getInput("directory")
|
|
const configuration = core.getInput("configuration")
|
|
const key = core.getInput("key")
|
|
const inventory = core.getInput("inventory")
|
|
const vaultPassword = core.getInput("vault_password")
|
|
const knownHosts = core.getInput("known_hosts")
|
|
const options = core.getInput("options")
|
|
const sudo = core.getInput("sudo")
|
|
const noColor = core.getInput("no_color")
|
|
const fileMode = 0600
|
|
|
|
let cmd = ["ansible-playbook", playbook]
|
|
|
|
if (options) {
|
|
cmd.push(options.replace(/\n/g, " "))
|
|
}
|
|
|
|
if (directory) {
|
|
process.chdir(directory)
|
|
core.saveState("directory", directory)
|
|
}
|
|
|
|
if (configuration) {
|
|
const ansibleConfigurationFile = "ansible.cfg"
|
|
fs.writeFileSync(ansibleConfigurationFile, configuration, { mode: fileMode })
|
|
core.saveState("ansibleConfigurationFile", ansibleConfigurationFile)
|
|
}
|
|
|
|
if (requirements) {
|
|
const requirementsContent = fs.readFileSync(requirements, 'utf8')
|
|
const requirementsObject = yaml.parse(requirementsContent)
|
|
|
|
if (Array.isArray(requirementsObject)) {
|
|
await exec.exec("ansible-galaxy", ["install", "-r", requirements])
|
|
} else {
|
|
if (requirementsObject.roles)
|
|
await exec.exec("ansible-galaxy", ["role", "install", "-r", requirements])
|
|
if (requirementsObject.collections)
|
|
await exec.exec("ansible-galaxy", ["collection", "install", "-r", requirements])
|
|
}
|
|
}
|
|
|
|
if (key) {
|
|
const keyFile = ".ansible_key"
|
|
fs.writeFileSync(keyFile, key + os.EOL, { mode: fileMode })
|
|
core.saveState("keyFile", keyFile)
|
|
cmd.push("--key-file")
|
|
cmd.push(keyFile)
|
|
}
|
|
|
|
if (inventory) {
|
|
const inventoryFile = ".ansible_inventory"
|
|
fs.writeFileSync(inventoryFile, inventory, { mode: fileMode })
|
|
core.saveState("inventoryFile", inventoryFile)
|
|
cmd.push("--inventory-file")
|
|
cmd.push(inventoryFile)
|
|
}
|
|
|
|
if (vaultPassword) {
|
|
const vaultPasswordFile = ".ansible_vault_password"
|
|
fs.writeFileSync(vaultPasswordFile, vaultPassword, { mode: fileMode })
|
|
core.saveState("vaultPasswordFile", vaultPasswordFile)
|
|
cmd.push("--vault-password-file")
|
|
cmd.push(vaultPasswordFile)
|
|
}
|
|
|
|
if (knownHosts) {
|
|
const knownHostsFile = ".ansible_known_hosts"
|
|
fs.writeFileSync(knownHostsFile, knownHosts, { mode: fileMode })
|
|
core.saveState("knownHostsFile", knownHostsFile)
|
|
cmd.push(`--ssh-common-args="-o UserKnownHostsFile=${knownHostsFile}"`)
|
|
process.env.ANSIBLE_HOST_KEY_CHECKING = "True"
|
|
} else {
|
|
process.env.ANSIBLE_HOST_KEY_CHECKING = "False"
|
|
}
|
|
|
|
if (sudo) {
|
|
cmd.unshift("sudo", "-E", "env", `PATH=${process.env.PATH}`)
|
|
}
|
|
|
|
if (noColor) {
|
|
process.env.ANSIBLE_NOCOLOR = "True"
|
|
} else {
|
|
process.env.ANSIBLE_FORCE_COLOR = "True"
|
|
}
|
|
|
|
let output = ""
|
|
await exec.exec(cmd.join(' '), null, {
|
|
listeners: {
|
|
stdout: function(data) {
|
|
output += data.toString()
|
|
},
|
|
stderr: function(data) {
|
|
output += data.toString()
|
|
}
|
|
}
|
|
})
|
|
core.setOutput("output", output)
|
|
} catch (error) {
|
|
core.setFailed(error.message)
|
|
}
|
|
}
|
|
|
|
main()
|