diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-11-22 17:50:59 -0600 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-11-22 17:50:59 -0600 |
commit | e4da6b3a2f2ba96e6f1ee84758519078c3efc779 (patch) | |
tree | 040405c75dbdb5f9354183c12e6070e890dc69bd /db-functions | |
parent | 5ed9e55f4d6a26452baaffadba407459ff96f295 (diff) |
Set the umask to allow g+w
This should hopefully cover all our permission bases with
regard to new files
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-functions')
-rw-r--r-- | db-functions | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db-functions b/db-functions index 740922f..ae1a171 100644 --- a/db-functions +++ b/db-functions @@ -37,6 +37,7 @@ repo_lock () { #repo_lock repo-name arch exit 1 else /bin/touch "$LOCKFILE" + set_umask fi } @@ -47,6 +48,7 @@ repo_unlock () { #repo_unlock repo-name arch else rm -f "$LOCKFILE" fi + restore_umask } # Get the package name from the filename |