├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── tasks ├── config.yml ├── deploy.yml ├── dirs.yml ├── libs.yml ├── main.yml ├── scripts.yml └── systemd.yml └── templates ├── etc ├── init │ └── upstart_job.conf.j2 └── sudoers.d │ └── app.j2 ├── lib └── systemd │ └── system │ ├── app.service.j2 │ ├── restart.path.j2 │ └── restart.service.j2 └── scripts └── remote_console.sh.j2 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/config.yml -------------------------------------------------------------------------------- /tasks/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/deploy.yml -------------------------------------------------------------------------------- /tasks/dirs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/dirs.yml -------------------------------------------------------------------------------- /tasks/libs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/libs.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/scripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/scripts.yml -------------------------------------------------------------------------------- /tasks/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/tasks/systemd.yml -------------------------------------------------------------------------------- /templates/etc/init/upstart_job.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/templates/etc/init/upstart_job.conf.j2 -------------------------------------------------------------------------------- /templates/etc/sudoers.d/app.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/templates/etc/sudoers.d/app.j2 -------------------------------------------------------------------------------- /templates/lib/systemd/system/app.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/templates/lib/systemd/system/app.service.j2 -------------------------------------------------------------------------------- /templates/lib/systemd/system/restart.path.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/templates/lib/systemd/system/restart.path.j2 -------------------------------------------------------------------------------- /templates/lib/systemd/system/restart.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/templates/lib/systemd/system/restart.service.j2 -------------------------------------------------------------------------------- /templates/scripts/remote_console.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/ansible-role-elixir-release/HEAD/templates/scripts/remote_console.sh.j2 --------------------------------------------------------------------------------