diff options
author | Dan Fandrich <danf@mageia.org> | 2024-08-15 09:32:37 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-08-15 10:52:40 -0700 |
commit | e4a9a61c08c6f4c2250c647dcc75d4c07f2de9c7 (patch) | |
tree | e364f93f700dcea7508ac9854560ebe35b74caa0 /modules/subversion | |
parent | d17b7032f2065a0c82681fecbbe250eb8e036995 (diff) | |
download | puppet-e4a9a61c08c6f4c2250c647dcc75d4c07f2de9c7.tar puppet-e4a9a61c08c6f4c2250c647dcc75d4c07f2de9c7.tar.gz puppet-e4a9a61c08c6f4c2250c647dcc75d4c07f2de9c7.tar.bz2 puppet-e4a9a61c08c6f4c2250c647dcc75d4c07f2de9c7.tar.xz puppet-e4a9a61c08c6f4c2250c647dcc75d4c07f2de9c7.zip |
Fix typos in comments
This should result in no difference in configuration.
Diffstat (limited to 'modules/subversion')
-rw-r--r-- | modules/subversion/manifests/repository.pp | 2 | ||||
-rw-r--r-- | modules/subversion/templates/no_binary | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/subversion/manifests/repository.pp b/modules/subversion/manifests/repository.pp index 77b32765..b223e6ae 100644 --- a/modules/subversion/manifests/repository.pp +++ b/modules/subversion/manifests/repository.pp @@ -28,7 +28,7 @@ define subversion::repository($group = 'svn', # $name ==> directory of the repo include subversion::server # TODO set umask -> requires puppet 2.7.0 - # unfortunatly, umask is required + # unfortunately, umask is required # https://projects.puppetlabs.com/issues/4424 exec { "/usr/local/bin/create_svn_repo.sh ${name}": user => 'root', diff --git a/modules/subversion/templates/no_binary b/modules/subversion/templates/no_binary index a7f2eb94..284642e5 100644 --- a/modules/subversion/templates/no_binary +++ b/modules/subversion/templates/no_binary @@ -3,7 +3,7 @@ REP="$1" TXN="$2" -# Filter some binary files based on common filename extentions. +# Filter some binary files based on common filename extensions. # It does not fully prevent commit of binary files, this script is only # here to avoid simple mistakes if svnlook changed -t "$TXN" "$REP" | grep -qi '\.\(gz\|bz2\|xz\|lzma\|Z\|7z\|tar\|tgz\|zip\|jpg\|gif\|png\|ogg\|mp3\|wav\|rar\|pdf\)$' |