diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2012-09-07 18:00:55 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2012-09-07 18:00:55 +0200 |
commit | 0b6f6bbd61d3a3da638a8f7a70f0e4fb27e0ffdd (patch) | |
tree | 83e711f7a0d5ac24ac1fc31c29364fec15f9d2ce | |
parent | 90b8062875fd95916936c991e27ca2505e641a34 (diff) | |
download | pass-a0d7682846ad593d59335fed985662c81d39b1dd.tar.gz pass-a0d7682846ad593d59335fed985662c81d39b1dd.tar.bz2 pass-a0d7682846ad593d59335fed985662c81d39b1dd.zip |
Update FSF address, add copyrights.1.1.3
-rw-r--r-- | COPYING | 28 | ||||
-rw-r--r-- | bash-completion/pass-bash-completion.sh | 4 | ||||
-rw-r--r-- | man/pass.1 | 12 | ||||
-rwxr-xr-x | src/password-store.sh | 3 |
4 files changed, 26 insertions, 21 deletions
@@ -1,17 +1,15 @@ Password Store is Copyright (C) 2012 Jason A. Donenfeld <Jason@zx2c4.com>. - -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2 of the License, or (at your -option) any later version. - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of MER‐ -CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -Public License for more details. - -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -675 Mass Ave, Cambridge, MA 02139, USA. - +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/bash-completion/pass-bash-completion.sh b/bash-completion/pass-bash-completion.sh index 2decd7c..8ddc377 100644 --- a/bash-completion/pass-bash-completion.sh +++ b/bash-completion/pass-bash-completion.sh @@ -1,4 +1,8 @@ # completion file for bash + +# (C) Copyright 2012 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. +# This is released under the GPLv2+. Please see COPYING for more information. + _pass() { local cur prev prefix suffix gen @@ -313,16 +313,16 @@ be set using the \fBinit\fP command. Jason A. Donenfeld <Jason@zx2c4.com> .SH COPYING -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/password-store.sh b/src/password-store.sh index fd2a195..e22e8c9 100755 --- a/src/password-store.sh +++ b/src/password-store.sh @@ -1,5 +1,8 @@ #!/bin/bash +# (C) Copyright 2012 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. +# This is released under the GPLv2+. Please see COPYING for more information. + umask 077 PREFIX="$HOME/.password-store" |