-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' to make tagged release.
- Loading branch information
Showing
10 changed files
with
150 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
--- | ||
# Rundeck | ||
rundeck_download_path: "{{ temp_dir }}" | ||
rundeck_domain: localhost # the domain that the web application is associated with. | ||
rundeck_domain: "localhost:4440" # the domain that the web application is associated with. | ||
rundeck_database_type: 'hsqldb' | ||
rundeck_database_host: 'localhost' | ||
rundeck_database_name: 'rundeck' | ||
rundeck_database_user: 'rundeck' | ||
rundeck_database_pass: 'rundeck' | ||
rundeck_users: [] # list of users as dictionary of name, password and list of roles | ||
rundeck_plugins: [] # list of plugin urls that are downloaded and installed into the rundeck libext. | ||
rundeck_generate_ssh: True # automatically generate ssh key, set to False to stop this action. | ||
# OS, kept for backward compatibility, use rundeck_download_path instead. | ||
temp_dir: /tmp |
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
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,24 @@ | ||
--- | ||
- name: Rundeck | Ensure .ssh directory exists | ||
file: | ||
path: /var/lib/rundeck/.ssh | ||
state: directory | ||
owner: rundeck | ||
group: rundeck | ||
mode: 0700 | ||
sudo: yes | ||
tags: | ||
- ssh | ||
- rundeck | ||
|
||
# ssh key | ||
- name: generate a ssh key | ||
user: | ||
name: rundeck | ||
generate_ssh_key: yes | ||
ssh_key_file: /var/lib/rundeck/.ssh/id_rsa | ||
ssh_key_type: rsa | ||
sudo: yes | ||
tags: | ||
- ssh | ||
- rundeck |
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
Oops, something went wrong.