diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-07-26 12:03:23 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-07-26 12:03:23 -0300 |
commit | e30c4aee13961390baa90ae6f9e72091b9245238 (patch) | |
tree | 3d0421deb7be77b33babc0cf58809858e475a817 /files | |
parent | 38cad939299c7b0f5ecbc2e536087a844d4321da (diff) | |
download | puppet-backup-e30c4aee13961390baa90ae6f9e72091b9245238.tar.gz puppet-backup-e30c4aee13961390baa90ae6f9e72091b9245238.tar.bz2 |
Use @localhost for sync-media repository contact
Diffstat (limited to 'files')
-rw-r--r-- | files/sync-media | 2 | ||||
-rw-r--r-- | files/sync-media-init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/files/sync-media b/files/sync-media index 4e84035..5346524 100644 --- a/files/sync-media +++ b/files/sync-media @@ -18,7 +18,7 @@ function sync_media_identity { if [ -z "`git config --local user.email`" ] || [ -z "`git config --local user.name`" ]; then repo="$(basename `pwd`)" git config user.name "${repo^} Asset Manager" - git config user.email "$repo@assset.manager" + git config user.email "$repo@localhost" fi } diff --git a/files/sync-media-init b/files/sync-media-init index b32e88c..9f396ec 100644 --- a/files/sync-media-init +++ b/files/sync-media-init @@ -18,7 +18,7 @@ function sync_media_identity { if [ -z "`git config --local user.email`" ] || [ -z "`git config --local user.name`" ]; then repo="$(basename `pwd`)" git config user.name "${repo^} Asset Manager" - git config user.email "$repo@assset.manager" + git config user.email "$repo@localhost" fi } |