Skip to content

Commit

Permalink
Trying system paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregharvey committed May 22, 2024
1 parent 0b4129b commit 582a9a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/commands/provision.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ export default class ProvisionCmd extends AnsibleCmd {
}),
interpreter: Flags.string({
char: 'i',
default: '/home/ce-dev/ansible/bin/python',
default: '/usr/bin/python',
description: 'The path to the Python interpreter to use on the target container.'
}),
ansiblepath: Flags.string({
char: 'a',
default: '/home/ce-dev/ansible/bin',
default: '/usr/bin',
description: 'The path to the Ansible binaries on the controller container.'
}),
help: Flags.help({char: 'h'}),
Expand All @@ -44,9 +44,9 @@ export default class ProvisionCmd extends AnsibleCmd {

protected ownBranch = '2.x'

protected ansiblePythonInterpreter = '/home/ce-dev/ansible/bin/python'
protected ansiblePythonInterpreter = '/usr/bin/python'

protected ansibleBinaryPath = '/home/ce-dev/ansible/bin'
protected ansibleBinaryPath = '/usr/bin'

protected verbose = false

Expand Down

0 comments on commit 582a9a1

Please sign in to comment.