Reproducer for Missing support for variable interpolation in .env files #718:
$ cat c.yaml
services:
test:
image: busybox
command: ["/bin/busybox", "sh", "-c", "env | grep -e EXAMPLE -e AWS"]
environment:
EXAMPLE_1: "$A"Reproducer for Missing support for variable interpolation in .env files #718:
$ cat c.yaml
services:
test:
image: busybox
command: ["/bin/busybox", "sh", "-c", "env | grep -e EXAMPLE -e AWS"]
environment:
EXAMPLE_1: "$A"| --- themes/lanyon/templates/base.tmpl.orig 2020-11-21 13:03:35.415560169 -0800 | |
| +++ themes/lanyon/templates/base.tmpl 2020-11-21 13:20:55.148189847 -0800 | |
| @@ -22,8 +22,8 @@ ${template_hooks['extra_head']()} | |
| <!-- Toggleable sidebar --> | |
| <div class="sidebar" id="sidebar"> | |
| <div class="sidebar-item"> | |
| - <p>A reserved <a href="https://getnikola.com" target="_blank">Nikola</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a> for Jekyll, | |
| - ported to Nikola by <a href="https://twitter.com/ralsina" target="_blank">@ralsina</a>.</p> | |
| + <!-- <p>A reserved <a href="https://getnikola.com" target="_blank">Nikola</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a> for Jekyll, | |
| + ported to Nikola by <a href="https://twitter.com/ralsina" target="_blank">@ralsina</a>.</p>--> |
| #!/usr/bin/env bash | |
| # | |
| # (c)2018 Christian Kujau <[email protected]> | |
| # Get a fresh copy from https://signal.org/ | |
| # | |
| # A (far too complicated) script to get the Ubuntu package of | |
| # Signal on a non-Debian based Desktop, due to: | |
| # | |
| # > Packages for rpm-based linux distributions like Fedora #1630 | |
| # > https://github.com/signalapp/Signal-Desktop/issues/1630 |
| #!/bin/sh | |
| # | |
| # Matomo manifest.inc.php generator | |
| # | |
| if [ ! -d "$1" ]; then | |
| echo "Usage: $(basename $0) [matomo-dir]" | |
| exit 1 | |
| else | |
| DIR="${1}" | |
| fi |
| #!/bin/bash | |
| # | |
| # Generate an SSHA password for .htpasswd files | |
| # * https://www.nginx.com/resources/wiki/community/faq/#how-do-i-generate-an-htpasswd-file-without-having-apache-tools-installed | |
| # * https://nginx.org/en/docs/http/ngx_http_auth_basic_module.html#auth_basic_user_file | |
| # | |
| if [ -z "$1" ]; then | |
| echo "Usage: $(basename $0) [user]" | |
| exit 1 | |
| else |
| #!/bin/sh | |
| # | |
| # oc_contacts_cards | |
| # FROM: id, addressbookid, carddata, uri, lastmodified, fullname | |
| # id|fullname|carddata|uri|addressbookid|lastmodified | |
| # | |
| # oc_cards | |
| # TO: id, addressbookid, carddata, uri, lastmodified, etag, size | |
| # id|addressbookid|carddata|uri|lastmodified|etag|size | |
| # |
| --- core/templates/login.php.orig 2013-07-10 01:41:17.395088962 +0200 | |
| +++ core/templates/login.php 2013-07-10 21:09:49.787218394 +0200 | |
| @@ -34,8 +34,6 @@ | |
| required<?php p($_['user_autofocus'] ? '' : ' autofocus'); ?> /> | |
| <label for="password" class="infield"><?php p($l->t('Password')); ?></label> | |
| <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/> | |
| - <input type="checkbox" id="show" name="show" /> | |
| - <label for="show"></label> | |
| </p> | |
| <input type="checkbox" name="remember_login" value="1" id="remember_login"/><label |
| # | |
| # Christian Kujau <[email protected]> | |
| # | |
| # Zero-padding examples in Bourne shell | |
| # Based on some wonderful examples from | |
| # http://jonathanwagner.net/2007/04/zero-padding-in-bash | |
| # | |
| if [ -z "$2" ]; then | |
| echo "Usage: `basename $0` (`awk '/^\t[a-z0-9]*\)$/' "$0" | xargs echo | sed 's/) /|/g'` [count]" |