diff options
author | Tails developers <tails@boum.org> | 2012-10-23 15:08:45 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-10-23 21:51:04 +0200 |
commit | 8bb6499572fd1c1a05c033f85bc36b556d9ba629 (patch) | |
tree | a8713f0b9aa56883f8645db222394aa549175954 /templates/reprepro-export-key.sh.erb | |
parent | 236ae8bf9adfc3ad34650d20a82f9720a7002b1b (diff) |
Refer to variables using Ruby instance variables in templates
This is the recommended way, as it prevents clashes with Ruby function names.
Diffstat (limited to 'templates/reprepro-export-key.sh.erb')
-rw-r--r-- | templates/reprepro-export-key.sh.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/reprepro-export-key.sh.erb b/templates/reprepro-export-key.sh.erb index 2b97585..eee1731 100644 --- a/templates/reprepro-export-key.sh.erb +++ b/templates/reprepro-export-key.sh.erb @@ -1,11 +1,11 @@ #!/bin/bash -KEY="`gpg --homedir <%= basedir %>/.gnupg --with-colon --list-secret-keys | cut -d : -f 5 | head -n 1`" +KEY="`gpg --homedir <%= @basedir %>/.gnupg --with-colon --list-secret-keys | cut -d : -f 5 | head -n 1`" if [ ! -z "$KEY" ]; then tempfile=$(mktemp) - destfile=<%= basedir %>/key.asc - gpg --homedir <%= basedir %>/.gnupg --export --armor $KEY > "$tempfile" + destfile=<%= @basedir %>/key.asc + gpg --homedir <%= @basedir %>/.gnupg --export --armor $KEY > "$tempfile" mv "$tempfile" "$destfile" chown reprepro:reprepro "$destfile" chmod 0664 "$destfile" |