Resolves T795.
Allowing salt's users to run salt binaries.
Differential D352
Allow salt group's users to run salt commands Sandlayth on Mar 28 2016, 23:23. Authored by Tags Referenced Files
Details Resolves T795. Allowing salt's users to run salt binaries. alias salt sudo -u salt salt salt '*' state.apply
Diff Detail
Event TimelineComment Actions Commit weren't from a clean master, it removed the arc file. To avoid such issues, here a custom Git command I wrote, allowing to get an updated master before to create the branch, so you can use git newbug T795 from everywhere and get a clean ready for Gerrit or Phabricator branch. /usr/local/bin/git-newbug #!/bin/sh if [ $# -eq 0 ] then echo "Usage: `basename $0` <name of the branch to create>" exit 1 fi BRANCH=$1 REPO=`git rev-parse --show-toplevel` if [ $? -ne 0 ] then exit $? fi; REPO=`basename $REPO` git checkout master git fetch --all git pull git pull origin master git checkout -b $BRANCH
Comment Actions
Comment Actions
|