diff options
Diffstat (limited to '.github/prepare_debian.sh')
| -rwxr-xr-x | .github/prepare_debian.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh index dcf778bc..3640e500 100755 --- a/.github/prepare_debian.sh +++ b/.github/prepare_debian.sh | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/bin/bash | 1 | #!/bin/bash |
| 2 | 2 | ||
| 3 | set -x | 3 | set -x |
| 4 | set -e | 4 | set -euo pipefail |
| 5 | 5 | ||
| 6 | export DEBIAN_FRONTEND=noninteractive | 6 | export DEBIAN_FRONTEND=noninteractive |
| 7 | 7 | ||
| @@ -64,13 +64,9 @@ apt-get -y install perl \ | |||
| 64 | iproute2 | 64 | iproute2 |
| 65 | 65 | ||
| 66 | # remove ipv6 interface from hosts | 66 | # remove ipv6 interface from hosts |
| 67 | if [ $(ip addr show | grep "inet6 ::1" | wc -l) -eq "0" ]; then | 67 | sed '/^::1/d' /etc/hosts > /tmp/hosts |
| 68 | sed '/^::1/d' /etc/hosts > /tmp/hosts | 68 | cp -f /tmp/hosts /etc/hosts |
| 69 | cp -f /tmp/hosts /etc/hosts | ||
| 70 | fi | ||
| 71 | |||
| 72 | ip addr show | 69 | ip addr show |
| 73 | |||
| 74 | cat /etc/hosts | 70 | cat /etc/hosts |
| 75 | 71 | ||
| 76 | # apache | 72 | # apache |
| @@ -131,5 +127,5 @@ sed "/NP_HOST_TLS_CERT/s/.*/'NP_HOST_TLS_CERT' => '$(hostname)',/" -i /src/.gith | |||
| 131 | 127 | ||
| 132 | # create some test files to lower inodes | 128 | # create some test files to lower inodes |
| 133 | for i in $(seq 10); do | 129 | for i in $(seq 10); do |
| 134 | touch /media/ramdisk2/test.$1 | 130 | touch /media/ramdisk2/test.$i |
| 135 | done | 131 | done |
