diff options
author | Helmut Grohne <helmut@subdivi.de> | 2015-03-01 15:25:33 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2015-03-01 15:25:33 +0100 |
commit | 35ee25cfef3602d0428913bb53c54487be3e1c72 (patch) | |
tree | 2e0d21e8ddad7346361ab90f8b32f203b2e06fcf | |
parent | 7cf694cd66fbfe34d23709d2b855d51dd534b493 (diff) | |
download | jenkins.debian.net-35ee25cfef3602d0428913bb53c54487be3e1c72.tar.xz |
change jenkins' umask to 022
Previously, the umask was not correctly propagated to jenkins by the
init script, so this setting was ineffective. Now it changed to 027
breaking at least rebootstrap jobs by turning
/etc/apt/apt.conf.d/80proxy to -rw-r----- in chroot-run.sh.
-rw-r--r-- | etc/default/jenkins | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/default/jenkins b/etc/default/jenkins index d3fdb8f1..744fca61 100644 --- a/etc/default/jenkins +++ b/etc/default/jenkins @@ -42,7 +42,7 @@ MAXOPENFILES=8192 # set the umask to control permission bits of files that Jenkins creates. # 027 makes files read-only for group and inaccessible for others. comment this out to inherit setting # (as of Ubuntu 12.04, by default umask comes from pam_umask(8) and /etc/login.defs -UMASK=027 +UMASK=022 # port for HTTP connector (default 8080; disable with -1) HTTP_PORT=8080 |