17 lines
509 B
Swift
17 lines
509 B
Swift
import Rainbow
|
|
|
|
// Constant string values.
|
|
enum Constants {
|
|
static let appName = "hpa"
|
|
static let brewPackages = [
|
|
"ansible", "imagemagick", "pandoc", "texLive"
|
|
]
|
|
static let playbookFileName = "main.yml"
|
|
static let inventoryFileName = "inventory.ini"
|
|
static let importantExtraArgsNote = """
|
|
Any extra arguments to pass to the underlying command invocation have to
|
|
be at the end with `--` before any arguments otherwise there will
|
|
be an "Unkown option" error. See examples above.
|
|
"""
|
|
}
|