Ignore:
Timestamp:
Sep 9, 2009, 8:30:47 PM (15 years ago)
Author:
Bruno Cornec
Message:
  • Change NFS support into a NetFS support to allow for multiple protocol in addition to NFS (NEEDS TESTING)
  • Better logging to detect a potential nuke issue
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mondo/src/common/mondostructures.h

    r2226 r2380  
    183183    dvd,                        ///< Back up to DVD+R[W] or DVD-R[W] disks.
    184184    cdstream,                   ///< Back up to recordable CDs but treat them like a tape streamer.
    185     nfs,                        ///< Back up to an NFS mount on the local subnet.
     185    netfs,                      ///< Back up to an NETFS mount on the local subnet.
    186186    tape,                       ///< Back up to tapes.
    187187    usb,                        ///< Back up to USB devices.
     
    558558
    559559  /**
    560    * The NFS mount to back up to/restore from.
    561    * If backup_media_type is not @b nfs, this is ignored.
     560   * The NETFS mount to back up to/restore from.
     561   * If backup_media_type is not @b netfs, this is ignored.
    562562   * It must contain a colon, and the server's address should be in dotted-decimal IP
    563563   * address form. (Domain names will be resolved in post_param_configuration().)
    564564   */
    565     char nfs_mount[MAX_STR_LEN];
    566 
    567   /**
    568    * The directory, relative to the root of @p nfs_mount, to put
     565    char netfs_mount[MAX_STR_LEN];
     566
     567  /**
     568   * The directory, relative to the root of @p netfs_mount, to put
    569569   * the backups in.
    570570   */
    571     char nfs_remote_dir[MAX_STR_LEN];
    572 
    573   /**
    574    * The potential user to use for NFS backup
    575    */
    576     char *nfs_user;
     571    char netfs_remote_dir[MAX_STR_LEN];
     572
     573  /**
     574   * The potential user to use for NETFS backup
     575   */
     576    char *netfs_user;
     577
     578  /**
     579   * The protocol to use for Network backup (NFS, SSHFS, ...)
     580   */
     581    char *netfs_proto;
    577582
    578583  /**
Note: See TracChangeset for help on using the changeset viewer.