15 lines
588 B
Swift
15 lines
588 B
Swift
// TODO: Use an actual version tag for playbook repo.
|
|
// TODO: Use an externally public url for the playbook repo.
|
|
|
|
public extension PlaybookClient {
|
|
@_spi(Internal)
|
|
enum Constants {
|
|
public static let defaultInstallationPath = "~/.local/share/hpa/playbook"
|
|
public static let inventoryFileName = "inventory.ini"
|
|
public static let playbookCommand = "ansible-playbook"
|
|
public static let playbookFileName = "main.yml"
|
|
public static let playbookRepoUrl = "https://git.housh.dev/michael/ansible-hpa-playbook.git"
|
|
public static let playbookRepoVersion = "main"
|
|
}
|
|
}
|