summaryrefslogtreecommitdiff
path: root/fail2ban-2to3
blob: 2015ed5bade1cdf7a3100d4d0ccc7faa11c41cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# This script carries out conversion of fail2ban to python3
# A backup of any converted files are created with ".bak"
# extension

set -eu

if 2to3 -w --no-diffs bin/* fail2ban;then
  echo "Success!" >&2
  exit 0
else
  echo "Fail!" >&2
  exit 1
fi