Changes between Version 3 and Version 4 of how-to/puppet


Ignore:
Timestamp:
Mar 7, 2011, 10:17:17 PM (13 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • how-to/puppet

    v3 v4  
    9797
    9898However, changes to the modules directory require more careful attention since thay are stored as git submodules.
     99
     100 * For every submodule, you need to add a writable remote (by default, you will pulling these in read-only). You can do that with:
     101{{{
     102git remote add mfpl-write gitosis@git.mayfirst.org:mfpl/puppet-modules/MODULENAME
     103}}}
     104 * When you push your changes, you need to specify with:
     105{{{
     106git push mfpl-write +HEAD:master
     107}}}
     108