Re: [BackupPC-users] How To Upgrade 4.3.0 to 4.3.1

2019-07-15 Thread Mark Wass
Okay here is my first attempt at modifying that script to just do an
upgrade, would some on mind looking over it and checking to see if it makes
sense and will work? It purely a copy of the original script with lines
removed and updated the bpcver variable to equal 4.3.1

#!/bin/bash
set -e
bpcver=4.3.1
bpcxsver=0.59
rsyncbpcver=3.1.2.0

# Fetch and install latest stable releases
wget
https://github.com/backuppc/backuppc-xs/releases/download/$bpcxsver/BackupPC-XS-$bpcxsver.tar.gz
wget
https://github.com/backuppc/rsync-bpc/releases/download/$rsyncbpcver/rsync-bpc-$rsyncbpcver.tar.gz
wget
https://github.com/backuppc/backuppc/releases/download/$bpcver/BackupPC-$bpcver.tar.gz
tar -zxf BackupPC-XS-$bpcxsver.tar.gz
tar -zxf rsync-bpc-$rsyncbpcver.tar.gz
tar -zxf BackupPC-$bpcver.tar.gz
cd BackupPC-XS-$bpcxsver
perl Makefile.PL
make
make test
make install
cd ../rsync-bpc-$rsyncbpcver
./configure
make
make install
cd ../BackupPC-$bpcver

# When upgrading, use this instead:
./configure.pl --batch --config-path /etc/BackupPC/config.pl

# The following is good also when upgrading, unless you have modified the
files yourself
cp httpd/BackupPC.conf /etc/apache2/conf-available/backuppc.conf
sed -i "/deny\ from\ all/d" /etc/apache2/conf-available/backuppc.conf
sed -i "/deny\,allow/d" /etc/apache2/conf-available/backuppc.conf
sed -i "/allow\ from/d" /etc/apache2/conf-available/backuppc.conf

# Note that changing the apache user and group (next two commands) could
cause other services
# provided by apache to fail. There are alternatives if you don't want to
change the apache
# user: use SCGI or a setuid BackupPC_Admin script - see the docs.
sed -i "s/export APACHE_RUN_USER=www-data/export APACHE_RUN_USER=backuppc/"
/etc/apache2/envvars
sed -i "s/export APACHE_RUN_GROUP=www-data/export
APACHE_RUN_GROUP=backuppc/" /etc/apache2/envvars
echo '' > /var/www/html/index.html
a2enconf backuppc
a2enmod cgid
service apache2 restart
cp systemd/init.d/debian-backuppc /etc/init.d/backuppc
chmod 755 /etc/init.d/backuppc
update-rc.d backuppc defaults
chmod u-s /var/www/cgi-bin/BackupPC/BackupPC_Admin
touch /etc/BackupPC/BackupPC.users
sed -i "s/$Conf{CgiAdminUserGroup}.*/$Conf{CgiAdminUserGroup} =
'backuppc';/" /etc/BackupPC/config.pl
sed -i "s/$Conf{CgiAdminUsers}.*/$Conf{CgiAdminUsers} = 'backuppc';/"
/etc/BackupPC/config.pl
chown -R backuppc:backuppc /etc/BackupPC

service backuppc start

On Tue, Jul 16, 2019 at 3:26 PM Johan Ehnberg  wrote:

> Hello Mark,
>
> There are notes in the script for upgrading.
>
> If anyone has the time, the upgrade parts could easily be made into a
> script of their own or even better, as an argument to the script.
>
> Our orchestration uses a separate approach, but I might contribute that as
> well as an option if I find the time.
>
> Best regards,
>
> Johan Ehnberg
>
>
> On 7/16/19 6:20 AM, Mark Wass wrote:
>
> Hi Guys
>
> Is there a How-To on upgrading from 4.3.0 to 4.3.1?
>
> I'm running 4.3.0 on Ubuntu 18.04 LTS and I installed originally from the
> script on this page.
>
>
> https://github.com/backuppc/backuppc/wiki/Installing-BackupPC-4-from-tarball-or-git-on-Ubuntu
>
> Thanks
> Mark
>
>
> ___
> BackupPC-users mailing listbackuppc-us...@lists.sourceforge.net
> List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/
>
> --
> *Johan Ehnberg* Founder, CEO Molnix Oy
> jo...@molnix.com +358 50 320 96 88 molnix.com
>
>
> *The contents of this e-mail and its attachments are for the use of the
> intended recipient only, and are confidential and may contain legally
> privileged information. If you are not the intended recipient or have
> otherwise received the e-mail in error, please notify the sender by
> replying to this e-mail immediately and then delete it immediately from
> your system. Any dissemination, distribution, copying or use of this
> communication without prior and explicit permission of the sender is
> strictly prohibited.*
>
> *Please consider the environment - do not print this e-mail unless you
> really need to.*
> ___
> BackupPC-users mailing list
> BackupPC-users@lists.sourceforge.net
> List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/
>
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] How To Upgrade 4.3.0 to 4.3.1

2019-07-15 Thread Mark Wass
Hi Guys

Is there a How-To on upgrading from 4.3.0 to 4.3.1?

I'm running 4.3.0 on Ubuntu 18.04 LTS and I installed originally from the
script on this page.

https://github.com/backuppc/backuppc/wiki/Installing-BackupPC-4-from-tarball-or-git-on-Ubuntu

Thanks
Mark
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] BackupPC_archiveHost Question

2012-03-22 Thread Mark Wass
Hi Guys

I use the BackupPC_archiveHost command to archive my backups to a hard drive.

I've recently discovered pbzip2 and I'm specifying /usr/bin/pbzip2 in my 
archive command as the location to my compression software. What I want to 
know, is there a way I can use pbzip2 flags in my command.

For example I'd like to be able to run the compression command like this... 
/usr/bin/pbzip2 -v

The v option outputs some nice compression information about the file that 
looks like this

=
Parallel BZIP2 v1.0.5 - by: Jeff Gilchrist [http://compression.ca]
[Jan. 08, 2009] (uses libbzip2 by Julian Seward)

 # CPUs: 2
 BWT Block Size: 900k
File Block Size: 900k
---
 File #: 1 of 1
 Input Name: test.log
Output Name: test.log.bz2

 Input Size: 199968 bytes
Compressing data (no threads)...
Output Size: 9390 bytes 
---

 Wall Clock: 0.303587 seconds
==

how can I specify pbzip2 options in the command?

Thanks

Mark


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Renaming a host in WebGUI?

2012-01-17 Thread Mark Wass
Hi Guys

I want to rename a host in the backuppc config (I'm looking at the Edit Hosts 
page in the WebGui) and just wanted to check if all I have to do is rename it 
at this location or if there was anything else that had to be done.

In the config of the host I want to rename I have set the ClientNameAlias 
override to the IP address of the host, I don't need to change that I just want 
to change what hosts is called in the WebGui.

Thanks

Mark



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Backuppc Installed on Netgear ReadyNAS

2011-06-22 Thread Mark Wass
Hi Guys

 

Just wondering if the is a HOW-TO for installing Backuppc on a Netgear
ReadyNAS box?

 

Has anyone out there done this successfully?

 

Thanks

 

Mark

 

--
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today.
http://p.sf.net/sfu/quest-sfdev2dev___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Gzip File Grows!

2011-04-14 Thread Mark Wass
Hi Guys

 

I use the BackupPC_tarCreate method for creating archived tar.gz files for
backup to removable media. However I'm having trouble with some of the files
actually growing in size once they are gzipped.

 

The one that are growing are backups of already compressed audio files.

 

Here is the command I use to create the archive

 

/usr/share/backuppc/bin/BackupPC_archiveHost
/usr/share/backuppc/bin/BackupPC_tarCreate /usr/bin/split /usr/bin/par2
phone-calls -1 /bin/gzip .gz 0 /tmp 0 *

 

Is there any way I can prevent BackupPC_tarCreate from using gzip, i.e. just
create the tar file?

 

Thanks

 

Mark

--
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Gzip File Grows!

2011-04-14 Thread Mark Wass
I just found that if I just tar the backup that the tar file is slightly
larger than the resultant gzip file.

 

I was determining the that the file was larger by executing the gzip -l
command on the gzip file and it was coming back at about -324% compressed.
It must be an error with the reporting command.

 

Thanks

 

Mark

 

From: Mark Wass [mailto:m...@market-analyst.com] 
Sent: Friday, 15 April 2011 10:53 AM
To: backuppc-users@lists.sourceforge.net
Subject: [BackupPC-users] Gzip File Grows!

 

Hi Guys

 

I use the BackupPC_tarCreate method for creating archived tar.gz files for
backup to removable media. However I'm having trouble with some of the files
actually growing in size once they are gzipped.

 

The one that are growing are backups of already compressed audio files.

 

Here is the command I use to create the archive

 

/usr/share/backuppc/bin/BackupPC_archiveHost
/usr/share/backuppc/bin/BackupPC_tarCreate /usr/bin/split /usr/bin/par2
phone-calls -1 /bin/gzip .gz 0 /tmp 0 *

 

Is there any way I can prevent BackupPC_tarCreate from using gzip, i.e. just
create the tar file?

 

Thanks

 

Mark

--
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Exclude not working as expected

2010-02-09 Thread Mark Wass
Hi Bowie

Thanks for clearing that up. So does that mean I should also amend these
other excludes by putting a forward slash in front?

'etc/fstab', == '/etc/fstab',

'var/cache/apt/archives/*', == '/var/cache/apt/archives/*',

Thanks 

Mark

-Original Message-
From: Bowie Bailey [mailto:bowie_bai...@buc.com] 
Sent: Wednesday, 10 February 2010 12:40 AM
To: backuppc-users@lists.sourceforge.net
Subject: Re: [BackupPC-users] Exclude not working as expected

Mark Wass wrote:

 Hi Guys

 I have a config file that looks likes this:

 $Conf{BackupFilesExclude} = {

 '/' = [

 'dev',

 'proc',

 'sys',

 'tmp',

 'var/lib/mysql',

 'etc/fstab',

 'var/log/mysql/mysql-bin.*',

 'var/log/apache2/*',

 'shares',

 'var/lib/cvs',

 'var/lib/cvs-old',

 'var/cache/apt/archives/*',

 'var/log/samba/*',

 'var/log/installer/*',

 'var/log/apt/*',

 'var/log/samba/*',

 'HDD2'

 ]

 };

 $Conf{BackupFilesOnly} = {};

 $Conf{ClientNameAlias} = '192.168.1.3';

 $Conf{RsyncShareName} = [

 '/'

 ];

 I've got an exclude in there for proc, the problem I'm getting is
 that the proc is also getting excluded from /opt/webmin/proc I
 only want the proc directly on the root / share to be excluded. How
 can I make sure the no other proc folders are excluded?


You are telling it that you want all files/directories called 'proc' to
be excluded. If you only want to exclude '/proc', then list it that way.
You probably want to do the same thing with most of the rest of your
list unless you are also wanting to exclude all 'tmp' directories, etc.

$Conf{BackupFilesExclude} = {
'/' = [
'/dev',
'/proc',
'/sys',
'/tmp',
...
'HDD2'
]
};

-- 
Bowie


--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the
business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Exclude not working as expected

2010-02-08 Thread Mark Wass
Hi Guys

 

I have a config file that looks likes this: 

 

$Conf{BackupFilesExclude} = {

  '/' = [

'dev',

'proc',

'sys',

'tmp',

'var/lib/mysql',

'etc/fstab',

'var/log/mysql/mysql-bin.*',

'var/log/apache2/*',

'shares',

'var/lib/cvs',

'var/lib/cvs-old',

'var/cache/apt/archives/*',

'var/log/samba/*',

'var/log/installer/*',

'var/log/apt/*',

'var/log/samba/*',

'HDD2'

  ]

};

$Conf{BackupFilesOnly} = {};

$Conf{ClientNameAlias} = '192.168.1.3';

$Conf{RsyncShareName} = [

  '/'

];

 

 

I've got an exclude in there for proc, the problem I'm getting is that the
proc is also getting excluded from /opt/webmin/proc I only want the proc
directly on the root / share to be excluded. How can I make sure the no
other proc folders are excluded?

 

Thanks

 

Mark

--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Full Backups Only

2009-10-19 Thread Mark Wass
Hi Guys

 

I'd like to only do Full backups once a week (and only keep 2 full backups
ant any one time) and I'm a little unsure of what I should set the
scheduling settings to.

 

Could someone please suggest to me the correct Schedule settings?  

 

Thanks

 

Mark

--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Full Backups Only

2009-10-19 Thread Mark Wass
Great thanks for that, what about IncrPeriod? Should I make that 0 also?

-Original Message-
From: Robert Kosinski [mailto:robert.kosin...@gmail.com] 
Sent: Tuesday, 20 October 2009 8:58 AM
To: General list for user discussion, questions and support
Subject: Re: [BackupPC-users] Full Backups Only

 I'd like to only do Full backups once a week (and only keep 2 full backups
 ant any one time) and I'm a little unsure of what I should set the
 scheduling settings to.

This is probably more than necessary, but you're looking for something like

$Conf{FullPeriod} = 6.97;
$Conf{FullKeepCnt} = 2;
$Conf{FullKeepCntMin} = 2;
$Conf{IncrKeepCnt} = 0;
$Conf{IncrKeepCntMin} = 0;
$Conf{IncrAgeMax}= 0;
$Conf{IncrLevels} = 0;


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Rsync Restore Commands

2009-10-11 Thread Mark Wass
Hi Guys

 

I use Rsync in my backup method and have added the following setting to the
rsync arguments as per the backuppc documentation.

 

--checksum-seed=32761

 

What I wanted to know is if I am also meant to use it in the Rsync Restore
arguments aswell?

 

Thanks

 

Mark

--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] How to upgrade 2.1.2ubuntu5 to 3.1.0

2008-01-21 Thread Mark Wass
I'd also like to know what's involved in doing this.

Mark

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Wahyu
Mahardian
Sent: Tuesday, 22 January 2008 3:22 AM
To: backuppc-users@lists.sourceforge.net
Subject: [BackupPC-users] How to upgrade 2.1.2ubuntu5 to 3.1.0

Hi all,
I've already install backuppc on my ubuntu 6.06 LTS Dapper Drake. After 
googling, i found that ubuntu 6.06 LTS comes with backuppc version 
2.1.2-2ubuntu5 https://launchpad.net/ubuntu/dapper/+source/backuppc.
I just want to upgrade it to version 3.0.0 or newer.

Any suggestion, how to install newer version?
1. By running apt-get or download the package and then install it manually?
2. Is there any repo that lists the newer backuppc 3.0.0/3.1.0 package 
so i can install it with apt-get?
3. Should i delete latest installation before installing the newer version?

Thx.

__
Apakah Anda Yahoo!?
Lelah menerima spam?  Surat Yahoo! memiliki perlindungan terbaik terhadap
spam  
http://id.mail.yahoo.com 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Updating Backuppc

2006-09-03 Thread Mark Wass




Hi All

Need a little advice about updating Backuppc.

I'm running 2.1.1 on a old Debian sarge install, all the backups are
saved on a second hard drive and the OS install and main config.pl is
stored on the primary hard drive.

I plan on installing a new motherboard and cpu, installing Ubuntu 6.06
on the primary HDD and then the latest stable edition of Backuppc for
Ubuntu.

My question is if I do this new install will all my backups on the
seond harddrive be recognised by Backuppc once I have completed the
install and pointed my symbolic link to the correct location for the
existing backups?

Thanks

Mark


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/


[BackupPC-users] Back Up a Single File Type

2006-04-19 Thread Mark Wass





 Hi
All

I'm using Rsync to backup my servers and was wondering how I would
specify backing up only zip files in my config.

For example here is my tree structure

/Folder1
|
-Files
-Temp
| |
| - File1.zip
| - File2.doc
| - File3.zip
| - File4.exe
|
-Hello

If my config file had a share name like this:

$Conf{RsyncShareName} = ['/Folder1/Temp'];

How do I only backup the zip files in this location?

Could I use this combination in the config?

'--exclude', '*.*',
'--include', '*.zip',

Reading this would say, exclude all files in the /Folder1/Temp folder and then include all zip files found in the /Folder1/Temp folder. Is this valid?

Thanks

Mark






[BackupPC-users] Backing up a Single file type

2006-04-06 Thread Mark Wass




Hi All

I'm using Rsync to backup my servers and was wondering how I would
specify backing up only zip files in my config.

For example here is my tree structure

/Folder1
|
-Files
-Temp
| |
| - File1.zip
| - File2.doc
| - File3.zip
| - File4.exe
|
-Hello

If my config file had a share name like this:

$Conf{RsyncShareName} = ['/Folder1/Temp'];

How do I only backup the zip files in this location?

Could I use this combination in the config?

'--exclude', '*.*',
'--include', '*.zip',

Reading this would say, exclude all files in the /Folder1/Temp folder and then include all zip files found in the /Folder1/Temp folder. Is this valid?

Thanks

Mark




[BackupPC-users] Backing up only zip files

2006-04-02 Thread Mark Wass




Hi All

I'm using Rsync to backup my servers and I'm not sure how to specify
only zip files to be backed up from a particular folder.

Could someone tell me what the syntax for the config file would be for
only backing up .zip files from a particular location, e.g. /tmp folder

Thanks

Mark




[BackupPC-users] Different Wake up times

2006-02-21 Thread Mark Wass




Hi All

I was wondering if there is a way of having different host getting
backed up at different times.

For example.

I have 5 servers that need to be backed up once a day at 1:00am

I then have another 2 hosts that need backing up every 3 hours.

Is this possible?

Could someone show me what settings need to be changed or point me in
the right direction to find out how.

Mark