search for: user_xenstor

Displaying 2 results from an estimated 2 matches for "user_xenstor".

Did you mean: user_xenstored
2019 Feb 12
2
[PATCH 08/13] xen init script: rewrite xenstored start logic
...red start logic"): > -XENSTORED="$ROOT"/bin/xenstored > +# In /etc/default/xen, the user can set XENSTORED, which has to be either > +# 'xenstored' or 'oxenstored'. In here, we add the version specific path. > +if [ -n "$XENSTORED" ]; then > + USER_XENSTORED="$ROOT"/bin/$XENSTORED IMO it would be better to do this only if XENSTORED does not start with /. So maybe case "$XENSTORED" in /*) USER_XENSTORED="$XENSTORED" ;; ?*) USER_XENSTORED="$ROOT"/bin/$XENSTORED ;; '') USER_XENSTORED="&...
2019 Feb 10
21
[PATCH 00/13] Patch blast of salsa wip.testme branch
The contents are the wip.testme branch currently on salsa. I combined the wip.initscript and wip.oxenstored into this and added more things today. I think this is pretty gtg and it's smoke tested (in several cases by scping files around instead of doing package build), so it needs a final extra review and test round before putting it in master branch (which I don't want to force push). I