Nes upstream release (1.1.1)

This commit is contained in:
Victor LABORIE 2017-02-10 10:42:05 +01:00
commit a87da27fbb
4 changed files with 13 additions and 4 deletions

View file

@ -74,7 +74,7 @@ rsync -av -e "ssh -p SSH_PORT" /home/ root@SERVER_NAME:/var/backup/home/
An example script is present in docs/zzz_evobackup, clone evobackup repo and read **CLIENT CONFIGURATION** section of the manual.
~~~
git clone https://vlaborie@forge.evolix.org/evobackup.git
git clone https://forge.evolix.org/evobackup.git
cd evobackup
man ./docs/bkctld.8
~~~
~~~

2
bkctld
View file

@ -362,7 +362,7 @@ sub_status() {
status="OFF"
fi
port=$(get_port $jail)
ip=$(get_ip $jail|xargs)
ip=$(get_ip $jail|xargs|tr -s ' ' ',')
echo "$jail $status $port $inc $ip" | awk '{ printf("%- 30s %- 10s %- 10s %- 10s %- 40s\n", $1, $2, $3, $4, $5); }'
}

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
bkctld (1.1.1) unstable; urgency=low
* Print all IP on bkctld status
-- Victor Laborie <vlaborie@evolix.fr> Fri, 10 Feb 2017 10:43:44 +0100
bkctld (1.1) unstable; urgency=high
* Add bash completion

View file

@ -108,7 +108,10 @@ mkdir -p -m 700 /home/backup
## don't forget to create use with read-only access
## > use admin
## > db.createUser( { user: "mongobackup", pwd: "PASS", roles: [ "backup", ] } )
# mongodump -u mongobackup -pPASS -o /home/backup/mongodump/ >/dev/null 2>&1 |grep -v "^connected to:"
# mongodump --quiet -u mongobackup -pPASS -o /home/backup/mongodump/
# if [ $? -ne 0 ]; then
# echo "Error with mongodump!"
# fi
## Redis : example with copy .rdb file
# cp /var/lib/redis/dump.rdb /home/backup/