You've already forked ansible-directadmin
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b563a9478a | ||
|
|
2e0fef1654 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.idea
|
||||||
16
.travis.yml
16
.travis.yml
@@ -12,18 +12,18 @@ addons:
|
|||||||
- python-pip
|
- python-pip
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# Install ansible
|
# Install ansible
|
||||||
- pip install ansible
|
- pip install ansible
|
||||||
|
|
||||||
# Check ansible version
|
# Check ansible version
|
||||||
- ansible --version
|
- ansible --version
|
||||||
|
|
||||||
# Create ansible.cfg with correct roles_path
|
# Create ansible.cfg with correct roles_path
|
||||||
- printf '[defaults]\nroles_path=../' >ansible.cfg
|
- printf '[defaults]\nroles_path=../' >ansible.cfg
|
||||||
|
|
||||||
script:
|
script:
|
||||||
# Basic role syntax check
|
# Basic role syntax check
|
||||||
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
|
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
||||||
@@ -15,138 +15,138 @@ directadmin_cache_timeout: 3600
|
|||||||
|
|
||||||
# Packages - http://help.directadmin.com/item.php?id=354
|
# Packages - http://help.directadmin.com/item.php?id=354
|
||||||
directadmin_debian6_packages:
|
directadmin_debian6_packages:
|
||||||
- gcc
|
- gcc
|
||||||
- g++
|
- g++
|
||||||
- make
|
- make
|
||||||
- flex
|
- flex
|
||||||
- bison
|
- bison
|
||||||
- openssl
|
- openssl
|
||||||
- libssl-dev
|
- libssl-dev
|
||||||
- perl
|
- perl
|
||||||
- perl-base
|
- perl-base
|
||||||
- perl-modules
|
- perl-modules
|
||||||
- libperl-dev
|
- libperl-dev
|
||||||
- libaio1
|
- libaio1
|
||||||
- libaio-dev
|
- libaio-dev
|
||||||
- zlib1g
|
- zlib1g
|
||||||
- zlib1g-dev
|
- zlib1g-dev
|
||||||
- libcap-dev
|
- libcap-dev
|
||||||
- bzip2
|
- bzip2
|
||||||
- automake
|
- automake
|
||||||
- autoconf
|
- autoconf
|
||||||
- libtool
|
- libtool
|
||||||
- cmake
|
- cmake
|
||||||
- pkg-config
|
- pkg-config
|
||||||
- python
|
- python
|
||||||
- libreadline-dev
|
- libreadline-dev
|
||||||
- libdb4.8-dev
|
- libdb4.8-dev
|
||||||
- libsasl2-dev
|
- libsasl2-dev
|
||||||
- patch
|
- patch
|
||||||
|
|
||||||
directadmin_debian7_packages:
|
directadmin_debian7_packages:
|
||||||
- gcc
|
- gcc
|
||||||
- g++
|
- g++
|
||||||
- make
|
- make
|
||||||
- flex
|
- flex
|
||||||
- bison
|
- bison
|
||||||
- openssl
|
- openssl
|
||||||
- libssl-dev
|
- libssl-dev
|
||||||
- perl
|
- perl
|
||||||
- perl-base
|
- perl-base
|
||||||
- perl-modules
|
- perl-modules
|
||||||
- libperl-dev
|
- libperl-dev
|
||||||
- libaio1
|
- libaio1
|
||||||
- libaio-dev
|
- libaio-dev
|
||||||
- zlib1g
|
- zlib1g
|
||||||
- zlib1g-dev
|
- zlib1g-dev
|
||||||
- libcap-dev
|
- libcap-dev
|
||||||
- bzip2
|
- bzip2
|
||||||
- automake
|
- automake
|
||||||
- autoconf
|
- autoconf
|
||||||
- libtool
|
- libtool
|
||||||
- cmake
|
- cmake
|
||||||
- pkg-config
|
- pkg-config
|
||||||
- python
|
- python
|
||||||
- libdb-dev
|
- libdb-dev
|
||||||
- libsasl2-dev
|
- libsasl2-dev
|
||||||
- libncurses5-dev
|
- libncurses5-dev
|
||||||
- patch
|
- patch
|
||||||
|
|
||||||
directadmin_debian8_packages:
|
directadmin_debian8_packages:
|
||||||
- gcc
|
- gcc
|
||||||
- g++
|
- g++
|
||||||
- make
|
- make
|
||||||
- flex
|
- flex
|
||||||
- bison
|
- bison
|
||||||
- openssl
|
- openssl
|
||||||
- libssl-dev
|
- libssl-dev
|
||||||
- perl
|
- perl
|
||||||
- perl-base
|
- perl-base
|
||||||
- perl-modules
|
- perl-modules
|
||||||
- libperl-dev
|
- libperl-dev
|
||||||
- libaio1
|
- libaio1
|
||||||
- libaio-dev
|
- libaio-dev
|
||||||
- zlib1g
|
- zlib1g
|
||||||
- zlib1g-dev
|
- zlib1g-dev
|
||||||
- libcap-dev
|
- libcap-dev
|
||||||
- bzip2
|
- bzip2
|
||||||
- automake
|
- automake
|
||||||
- autoconf
|
- autoconf
|
||||||
- libtool
|
- libtool
|
||||||
- cmake
|
- cmake
|
||||||
- pkg-config
|
- pkg-config
|
||||||
- python
|
- python
|
||||||
- libdb-dev
|
- libdb-dev
|
||||||
- libsasl2-dev
|
- libsasl2-dev
|
||||||
- libncurses5-dev
|
- libncurses5-dev
|
||||||
- libsystemd-dev
|
- libsystemd-dev
|
||||||
- bind9
|
- bind9
|
||||||
- quota
|
- quota
|
||||||
- libsystemd-daemon0
|
- libsystemd-daemon0
|
||||||
- patch
|
- patch
|
||||||
- libjemalloc-dev
|
- libjemalloc-dev
|
||||||
|
|
||||||
directadmin_rhel_generic_packages:
|
directadmin_rhel_generic_packages:
|
||||||
- gcc
|
- gcc
|
||||||
- gcc-c++
|
- gcc-c++
|
||||||
- flex
|
- flex
|
||||||
- bison
|
- bison
|
||||||
- make
|
- make
|
||||||
- bind
|
- bind
|
||||||
- bind-libs
|
- bind-libs
|
||||||
- bind-utils
|
- bind-utils
|
||||||
- openssl
|
- openssl
|
||||||
- openssl-devel
|
- openssl-devel
|
||||||
- perl
|
- perl
|
||||||
- quota
|
- quota
|
||||||
- libaio
|
- libaio
|
||||||
- libcom_err-devel
|
- libcom_err-devel
|
||||||
- libcurl-devel
|
- libcurl-devel
|
||||||
- gd
|
- gd
|
||||||
- zlib-devel
|
- zlib-devel
|
||||||
- zip
|
- zip
|
||||||
- unzip
|
- unzip
|
||||||
- libcap-devel
|
- libcap-devel
|
||||||
- cronie
|
- cronie
|
||||||
- bzip2
|
- bzip2
|
||||||
- cyrus-sasl-devel
|
- cyrus-sasl-devel
|
||||||
- perl-ExtUtils-Embed
|
- perl-ExtUtils-Embed
|
||||||
- autoconf
|
- autoconf
|
||||||
- automake
|
- automake
|
||||||
- libtool
|
- libtool
|
||||||
- which
|
- which
|
||||||
- patch
|
- patch
|
||||||
- mailx
|
- mailx
|
||||||
- bzip2-devel
|
- bzip2-devel
|
||||||
- lsof
|
- lsof
|
||||||
|
|
||||||
directadmin_rhel_packages:
|
directadmin_rhel_packages:
|
||||||
- db4-devel
|
- db4-devel
|
||||||
|
|
||||||
directadmin_centos7_packages:
|
directadmin_centos7_packages:
|
||||||
- psmisc
|
- psmisc
|
||||||
- net-tools
|
- net-tools
|
||||||
- systemd-devel
|
- systemd-devel
|
||||||
- libdb-devel
|
- libdb-devel
|
||||||
- perl-DBI
|
- perl-DBI
|
||||||
- xfsprogs
|
- xfsprogs
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: Gerben Geijteman
|
author: Gerben Geijteman
|
||||||
description: Deploy DirectAdmin with Ansible
|
description: Deploy DirectAdmin with Ansible
|
||||||
|
|||||||
Reference in New Issue
Block a user