Changeset 534


Ignore:
Timestamp:
08/21/2011 15:54:25 (9 months ago)
Author:
ccowart
Message:

Documenting the required workaround. The underlying issue will be resolved
with the redesign that's referenced in ticket #100.

Fixes #123

Location:
branches/confman-1.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/confman-1.9/configure.ac

    r418 r534  
    1212AC_PATH_PROG([WGET], [wget]) 
    1313 
     14AC_ARG_ENABLE(bash-completions, 
     15    AC_HELP_STRING([--enable-bash-completions], [install bash completions]), 
     16    [ 
     17        case "${enableval}" in 
     18            yes) BASH_COMPLETIONS=yes ;; 
     19            no)  BASH_COMPLETIONS=no ;; 
     20            *)   AC_MSG_ERROR(bad value ${enableval} for --enable-bash-completions) ;; 
     21        esac 
     22    ], 
     23    [BASH_COMPLETIONS=no]) 
     24 
    1425AC_CONFIG_FILES([Makefile]) 
    1526AC_OUTPUT 
  • branches/confman-1.9/confman.8.in

    r504 r534  
    450450in the next major release of 
    451451.Nm . 
     452.Pp 
     453If you are managing your 
     454.Xr confman.conf 5 
     455file in 
     456.Nm , 
     457the process of changing a file to become a singularity requires two commits; 
     458the first to get the new confman.conf onto the filesystem and the second to 
     459actually install the pieces as a unit. A redesign for how singularity  
     460metadata is stored is planned for the next major release. 
    452461.Sh SECURITY CONSIDERATIONS 
    453462.Nm  
Note: See TracChangeset for help on using the changeset viewer.