Nikolai Zujev

Results 16 comments of Nikolai Zujev
trafficstars

There is no proxy between upstart and sysV services, unfortunately. Upstart provides `initctl` and uses it to control jobs.

what about `BlackHole`? faced same issue today.

Very useful update, looking forward for the changes is publicly available. It's important to expose failure reason back to CFN, as LogGroup might be deleted on failed creation, if it...

Similar problem here, it seems extended profile is not supported. I have 1 user `profile source` and role `profile target` configured in custom file locations. ```shell export AWS_CONFIG_FILE=/Users/jaymecd/ws/my-project/.local/aws/config export AWS_SHARED_CREDENTIALS_FILE=/Users/jaymecd/ws/my-project/.local/aws/credentials...

Knowing that GHA renders 1st line of the `run` script as step title, this workaround allows to have nicer rendering: ```yaml - name: Verify installed ASDF tools shell: bash run:...

@stefansundin nice! but there is an issue: tunnel is not recreated on apply - stefansundin/terraform-provider-ssh#1

works like a charm: - install asdf itself - restore cache: - cache only 2 directories: `~/.asdf/plugins`, `~/.asdf/installs` - reshim installed tools: - required to recreate adsf shims used to...

> Any reason not to simply use `${{ env.ASDF_DIR }}` as the cache path? Not sure why, but we don't reshim, and it still works at least for the plugins...

Connected issue: [phpredis/phpredis#429](https://github.com/phpredis/phpredis/issues/429#issuecomment-34121778)

`trap` works within same shell. so this is almost equivalent (except for `run` fails): ```shell docker run "${{ steps.build-image.outputs.image }}" docker image rm "${{ steps.build-image.outputs.image }}" || true ```