Class: R10K::Environment::SVN
- Includes:
- Util::Setopts
- Defined in:
- lib/r10k/environment/svn.rb
Overview
This class implements an environment based on an SVN branch.
Constant Summary
Constants included from Logging
Logging::LOG_LEVELS, Logging::SYSLOG_LEVELS_MAP
Instance Attribute Summary collapse
- #password ⇒ Object readonly
- #remote ⇒ Object readonly
- #username ⇒ Object readonly
- #working_dir ⇒ Object readonly
Attributes inherited from Base
#basedir, #desired_contents, #dirname, #loader, #managed_directories, #name, #path, #puppetfile, #puppetfile_name
Instance Method Summary collapse
-
#initialize(name, basedir, dirname, options = {}) ⇒ SVN
constructor
Initialize the given SVN environment.
-
#signature ⇒ String
Return a sting which uniquely identifies (per source) the current state of the environment.
- #status ⇒ Object
-
#sync ⇒ void
Perform an initial checkout of the SVN repository or update the repository.
Methods included from Logging
add_outputters, debug_formatter, default_formatter, default_outputter, #logger, #logger_name, parse_level
Methods inherited from Base
#accept, #deploy, #determine_purge_exclusions, #generate_types!, #info, #load_puppetfile_modules, #module_conflicts?, #modules, #purge_exclusions, #whitelist
Constructor Details
#initialize(name, basedir, dirname, options = {}) ⇒ SVN
Initialize the given SVN environment.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/r10k/environment/svn.rb', line 43 def initialize(name, basedir, dirname, = {}) super setopts(, { # Standard option interface :source => :remote, :version => :expected_revision, :type => ::R10K::Util::Setopts::Ignore, # Type-specific options :remote => :self, :username => :self, :password => :self, }) @working_dir = R10K::SVN::WorkingDir.new(Pathname.new(@full_path), :username => @username, :password => @password) end |
Instance Attribute Details
#password ⇒ Object (readonly)
29 30 31 |
# File 'lib/r10k/environment/svn.rb', line 29 def password @password end |
#remote ⇒ Object (readonly)
14 15 16 |
# File 'lib/r10k/environment/svn.rb', line 14 def remote @remote end |
#username ⇒ Object (readonly)
24 25 26 |
# File 'lib/r10k/environment/svn.rb', line 24 def username @username end |
#working_dir ⇒ Object (readonly)
19 20 21 |
# File 'lib/r10k/environment/svn.rb', line 19 def working_dir @working_dir end |
Instance Method Details
#signature ⇒ String
Return a sting which uniquely identifies (per source) the current state of the environment.
81 82 83 |
# File 'lib/r10k/environment/svn.rb', line 81 def signature @working_dir.revision end |
#status ⇒ Object
85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/r10k/environment/svn.rb', line 85 def status if !@path.exist? :absent elsif !@working_dir.is_svn? :mismatched elsif !(@remote == @working_dir.url) :mismatched elsif !@synced :outdated else :insync end end |
#sync ⇒ void
This method returns an undefined value.
Perform an initial checkout of the SVN repository or update the repository.
If the environment is being created for the first time, it will automatically update all modules to ensure that the environment is complete.
67 68 69 70 71 72 73 74 |
# File 'lib/r10k/environment/svn.rb', line 67 def sync if @working_dir.is_svn? @working_dir.update else @working_dir.checkout(@remote, @expected_revision) end @synced = true end |