Differences from version 11 to 14



@@ -1,4 +1,4 @@

-{attachment id=1059 float=right} This is a permutation of the original pg_backup script as written by speedboy_420. I have made changes to allow for environment variables to make backups of a remote host, change backup direct via ENV variable, as well as use bzip2 for all compression.
+{attachment id=1059 float=right} This is a permutation of the original pg_backup script as written by speedboy_420. I have made changes to allow for environment variables to make backups of a remote host, change backup directory via ENV variable, as well as use bzip2 for all compression.
 
 There is also a [https://gist.github.com/546865/117f1831b695bf5f0c8a60d093aa8f00dceca04c|github gist repo] for this file.
 

@@ -285,9 +285,9 @@

 db_connectivity() {
  tmp=`echo "($exclusions)" | sed 's/\ /\|/g'`
  if [ "$exclusions" = "" ]; then
- databases=`$PGBINDIR/psql $PARAM_PGHOST -U $PGUSER -q -c "\l" template1 | sed -n 4,/\eof/p | grep -v rows\) | grep -v : | awk {'print $1'} || echo "Database connection could not be established at $timeinfo" >> $PGLOGDIR`
+ databases=`$PGBINDIR/psql $PARAM_PGHOST -U $PGUSER -q -c "SELECT datname FROM pg_database WHERE datistemplate = false" template1 | sed -n 4,/\eof/p | grep -v rows\) | grep -v : | awk {'print $1'} || echo "Database connection could not be established at $timeinfo" >> $PGLOGDIR`
  else
- databases=`$PGBINDIR/psql $PARAM_PGHOST -U $PGUSER -q -c "\l" template1 | sed -n 4,/\eof/p | grep -v rows\) | grep -v : | grep -Ev $tmp | awk {'print $1'} || echo "Database connection could not be established at $timeinfo" >> $PGLOGDIR`
+ databases=`$PGBINDIR/psql $PARAM_PGHOST -U $PGUSER -q -c "SELECT datname FROM pg_database WHERE datistemplate = false" template1 | sed -n 4,/\eof/p | grep -v rows\) | grep -v : | grep -Ev $tmp | awk {'print $1'} || echo "Database connection could not be established at $timeinfo" >> $PGLOGDIR`
  fi
 }
 

@@ -323,7 +323,7 @@

  duration=`expr $finish_time - $start_time`
  echo "Backup complete (duration $duration seconds) at $timeinfo for schedule $current_time on database: $i, format: $backup_type" >> $PGLOGDIR
  done
- exit 1
+ exit 0
 }
 
 # Run backup and vacuum

@@ -344,7 +344,7 @@

  duration=`expr $finish_time - $start_time`
  echo "Backup and Vacuum complete (duration $duration seconds) at $timeinfo for schedule $current_time on database: $i, format: $backup_type" >> $PGLOGDIR
  done
- exit 1
+ exit 0
 }
 
 # Run backup, vacuum and analyze

@@ -365,7 +365,7 @@

  duration=`expr $finish_time - $start_time`
  echo "Backup, Vacuum and Analyze complete (duration $duration seconds) at $timeinfo for schedule $current_time on database: $i, format: $backup_type" >> $PGLOGDIR
  done
- exit 1
+ exit 0
 }
 
 # Run vacuum

@@ -379,7 +379,7 @@

  duration=`expr $finish_time - $start_time`
  echo "Vacuum complete (duration $duration seconds) at $timeinfo for schedule $current_time on database: $i " >> $PGLOGDIR
  done
- exit 1
+ exit 0
 }
 
 # Run vacuum and analyze

@@ -393,7 +393,7 @@

  duration=`expr $finish_time - $start_time`
  echo "Vacuum and Analyze complete (duration $duration seconds) at $timeinfo for schedule $current_time on database: $i " >> $PGLOGDIR
  done
- exit 1
+ exit 0
 }
 
 # Print information regarding available backups

@@ -415,7 +415,7 @@

  done
  echo ""
  fi
- exit 1
+ exit 0
 }
 
 # Print configuration test

@@ -524,7 +524,7 @@

  test -x $PGBINDIR/vacuumdb && echo "Yes" || echo "No"
 
  echo ""
- exit 1
+ exit 0
 }
 
 # Print help

@@ -544,7 +544,7 @@

  echo " help, This message"
  echo ""
  echo "Report bugs to <speedboy_420 at hotmail dot com >."
- exit 1
+ exit 0
 }
 
 case "$1" in

@@ -553,14 +553,14 @@

  db_connectivity
  set_permissions
  run_b
- exit 1
+ exit 0
  ;;
  # Run backup and vacuum
  bv)
  db_connectivity
  set_permissions
  run_bv
- exit 1
+ exit 0
  ;;
 
  # Run backup, vacuum and analyze

@@ -568,7 +568,7 @@

  db_connectivity
  set_permissions
  run_bva
- exit 1
+ exit 0
  ;;
 
  # Run vacuum

@@ -576,7 +576,7 @@

  db_connectivity
  set_permissions
  run_v
- exit 1
+ exit 0
  ;;
 
  # Run vacuum and analyze

@@ -584,14 +584,14 @@

  db_connectivity
  set_permissions
  run_va
- exit 1
+ exit 0
  ;;
 
  # Print info
  info)
  set_permissions
  print_info
- exit 1
+ exit 0
  ;;
 
  # Print configtest

@@ -599,13 +599,13 @@

  db_connectivity
  set_permissions
  print_configtest
- exit 1
+ exit 0
  ;;
 
  # Default
  *)
  print_help
- exit 1
+ exit 0
  ;;
 esac
 {/code}
Page History
Date/CommentUserIPVersion
03 Sep 2013 (12:55 UTC)
spiderr24.106.202.12314
Current • Source
spiderr24.106.202.12313
View • Compare • Difference • Source
spiderr24.106.202.12312
View • Compare • Difference • Source
spiderr174.97.129.25511
View • Compare • Difference • Source
spiderr174.97.129.2559
View • Compare • Difference • Source
spiderr174.97.129.2558
View • Compare • Difference • Source
spiderr65.190.141.137
View • Compare • Difference • Source
spiderr65.190.141.136
View • Compare • Difference • Source
spiderr65.190.141.134
View • Compare • Difference • Source
spiderr66.194.217.2212
View • Compare • Difference • Source