diff options
-rwxr-xr-x | .github/prepare_debian.sh | 61 | ||||
-rw-r--r-- | .github/workflows/test.yml | 2 |
2 files changed, 46 insertions, 17 deletions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh index 4021c10..d8a76da 100755 --- a/.github/prepare_debian.sh +++ b/.github/prepare_debian.sh | |||
@@ -11,21 +11,51 @@ if [ $(lsb_release -is) = "Debian" ]; then | |||
11 | apt-add-repository non-free | 11 | apt-add-repository non-free |
12 | apt-get update | 12 | apt-get update |
13 | fi | 13 | fi |
14 | apt-get -y install perl autotools-dev libdbi-dev libldap2-dev libpq-dev libradcli-dev libnet-snmp-perl procps | 14 | apt-get -y install perl \ |
15 | apt-get -y install libdbi0-dev libdbd-sqlite3 libssl-dev dnsutils snmp-mibs-downloader libsnmp-perl snmpd | 15 | autotools-dev \ |
16 | apt-get -y install fping snmp netcat-openbsd smbclient vsftpd apache2 ssl-cert postfix libhttp-daemon-ssl-perl | 16 | libdbi-dev \ |
17 | apt-get -y install libdbd-sybase-perl libnet-dns-perl | 17 | libldap2-dev \ |
18 | apt-get -y install slapd ldap-utils | 18 | libpq-dev \ |
19 | apt-get -y install gcc make autoconf automake gettext | 19 | libradcli-dev \ |
20 | apt-get -y install faketime | 20 | libnet-snmp-perl \ |
21 | apt-get -y install libmonitoring-plugin-perl | 21 | procps \ |
22 | apt-get -y install libcurl4-openssl-dev | 22 | libdbi0-dev \ |
23 | apt-get -y install liburiparser-dev | 23 | libdbd-sqlite3 \ |
24 | apt-get -y install squid | 24 | libssl-dev \ |
25 | apt-get -y install openssh-server | 25 | dnsutils \ |
26 | apt-get -y install mariadb-server mariadb-client libmariadb-dev | 26 | snmp-mibs-downloader \ |
27 | apt-get -y install cron iputils-ping | 27 | libsnmp-perl \ |
28 | apt-get -y install iproute2 | 28 | snmpd \ |
29 | fping \ | ||
30 | snmp \ | ||
31 | netcat-openbsd \ | ||
32 | smbclient \ | ||
33 | vsftpd \ | ||
34 | apache2 \ | ||
35 | ssl-cert \ | ||
36 | postfix \ | ||
37 | libhttp-daemon-ssl-perl \ | ||
38 | libdbd-sybase-perl \ | ||
39 | libnet-dns-perl \ | ||
40 | slapd \ | ||
41 | ldap-utils \ | ||
42 | gcc \ | ||
43 | make \ | ||
44 | autoconf \ | ||
45 | automake \ | ||
46 | gettext \ | ||
47 | faketime \ | ||
48 | libmonitoring-plugin-perl \ | ||
49 | libcurl4-openssl-dev \ | ||
50 | liburiparser-dev \ | ||
51 | squid \ | ||
52 | openssh-server \ | ||
53 | mariadb-server \ | ||
54 | mariadb-client \ | ||
55 | libmariadb-dev \ | ||
56 | cron \ | ||
57 | iputils-ping \ | ||
58 | iproute2 | ||
29 | 59 | ||
30 | # remove ipv6 interface from hosts | 60 | # remove ipv6 interface from hosts |
31 | if [ $(ip addr show | grep "inet6 ::1" | wc -l) -eq "0" ]; then | 61 | if [ $(ip addr show | grep "inet6 ::1" | wc -l) -eq "0" ]; then |
@@ -37,7 +67,6 @@ ip addr show | |||
37 | 67 | ||
38 | cat /etc/hosts | 68 | cat /etc/hosts |
39 | 69 | ||
40 | |||
41 | # apache | 70 | # apache |
42 | a2enmod ssl | 71 | a2enmod ssl |
43 | a2ensite default-ssl | 72 | a2ensite default-ssl |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f93930..d2785a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -24,7 +24,7 @@ jobs: | |||
24 | #... | 24 | #... |
25 | steps: | 25 | steps: |
26 | - name: Git clone repository | 26 | - name: Git clone repository |
27 | uses: actions/checkout@v2 | 27 | uses: actions/checkout@v3 |
28 | #- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate | 28 | #- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate |
29 | # uses: mxschmitt/action-tmate@v3 | 29 | # uses: mxschmitt/action-tmate@v3 |
30 | - name: Run the tests on ${{ matrix.distro }} | 30 | - name: Run the tests on ${{ matrix.distro }} |