jtraub91
jtraub91
@OrangeDog I don't believe quoting changed the behavior
@OrangeDog Confirmed quoting does not fix this bug. Please see output below. ``` C:\Windows\system32>salt-call --local task.create_task test_task cmd="echo hello world" trigger_type=Once start_date=2022-09-22 start_time="10:15" Passed invalid arguments: strptime() argument 1 must...
@OrangeDog ah ok, that got it to work. That's a weird one; oddly, single quotes work (`start_time='10:00'`) but double quotes do not (`start_time="10:00"`). This may not be a bug after...
Why can't this be implemented using django builtin `permission_required` decorator? ``` from django.contrib.auth.decorators import permission_required @permission_required("app.view_model") @api.get("/model") def model_get(request): ... ``` This apparently doesn't work as of `0.22.2`
@dwoz yes, appears to behave the same in 3006.8 at least
Consider the following setup: Master and minion on a single VM. ``` # /etc/salt/master.d/master.conf user: root file_roots: base: - /srv/salt/base dev: - /srv/salt/dev ``` ``` # /etc/salt/minion.d/minion.conf master: localhost ```...
This seems non-ideal, since it forces users to upgrade their node in order to use `ord`
I really like this idea and think I have a relatively easy way to achieve it with salt. Proof of concept to come. Stay tuned.
So, for this proof of concept I did not concern myself with the jinja rendering, which will be essential, but it seems easy enough to add that in later so...
Adding this here to not clutter the issue list, but this [line](https://github.com/Snipa22/nodejs-pool/blob/master/deployment/deploy.bash#L29) seems like its bound to go obsolete soon too (if it is not already). Looks like the latest...