James Deathe

Results 21 comments of James Deathe

Hi @marhoy, Thank you for your interest in the project. Yes there are plans to add a CentOS-8 branch however I'm pausing development on all personal projects until sometime next...

Hi @lunarfs Thanks for you're interest in the project. I currently have no use case for this except for education and personal interest and don't have spare time to pick...

``` ( sleep 60; kill -TERM 1; ) & disown ```

Progress: https://github.com/jdeathe/centos-ssh/pull/800/files Adds a `reaper` script so that it can trap signals and will terminate the PID 1 process. If the reaper process gets killed it will trigger the trap...

@citronbleuv Does the work-around provided in https://github.com/jdeathe/centos-ssh/issues/472 suit your requirements? I could consider making changes to allow specifying system id values however this would shift additional responsibility onto the operator...

@citronbleuv I've opened #597 and #598 which will open up the range of values that can be set via `SSH_USER_ID` in the next release.

@citronbleuv Today I've released tags 1.10.0 / 2.5.0 that removes restrictions on the UID:GID values that can be configured via `SSH_USER_ID` and adds the special case of setting `SSH_USER` to...

PHP's [`setlocale`](http://php.net/manual/en/function.setlocale.php) command relies upon the system locale and this effects functions such as [`strftime`](http://php.net/manual/en/function.strftime.php) and [`localeconv`](http://php.net/manual/en/function.localeconv.php)

Ref: https://access.redhat.com/solutions/974273 The default`AcceptEnv` settings have not been removed from sshd_config so the following error is seen when running the `locale` command after connecting over SSH: ``` locale: Cannot set...

Now that the time zone settings have been moved to `SYSTEM_TIMEZONE` and split out of the bootstrap script it would make sense to include this at the same startup level....