-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from boxrick/master
Fixing broken PHP and adding commercial option
- Loading branch information
Showing
4 changed files
with
44 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
# This allows us to install the commercial version of observium | ||
|
||
- name: Force fail when svn user not defined | ||
fail: | ||
msg: "observium_commercial_svn_user variable is undefined, this means we cannot clone from observium SVN" | ||
when: not observium_commercial_svn_user | length > 0 | ||
|
||
- name: Force fail when svn password not defined | ||
fail: | ||
msg: "observium_commercial_svn_password variable is undefined, this means we cannot clone from observium SVN" | ||
when: not observium_commercial_svn_password | length > 0 | ||
|
||
- name: install-commercial | Downloading Observium to {{ observium_dl_dir }} | ||
subversion: | ||
repo: "{{ observium_commercial_svn_repo }}" | ||
dest: "{{ observium_base_dir }}" | ||
username: "{{ observium_commercial_svn_user }}" | ||
password: "{{ observium_commercial_svn_password }}" | ||
update: no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters