aboutsummaryrefslogtreecommitdiff
path: root/src/property
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-22 14:31:56 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-22 14:31:56 -0700
commit26a97fed28b2c0b6444f2d57386e0c34198bc896 (patch)
tree945d623df2bc8e789ac77f324eb52ff9092f471e /src/property
parent1bc931c93e8a5c8290ad9afafb82ecf19ef73f26 (diff)
downloadconsfigurator-26a97fed28b2c0b6444f2d57386e0c34198bc896.tar.gz
a better name for CMD:SINGLE
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property')
-rw-r--r--src/property/cmd.lisp (renamed from src/property/command.lisp)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/property/command.lisp b/src/property/cmd.lisp
index c1bb3f2..1e6a94c 100644
--- a/src/property/command.lisp
+++ b/src/property/cmd.lisp
@@ -15,14 +15,14 @@
;;; You should have received a copy of the GNU General Public License
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-(in-package :consfigurator.property.command)
+(in-package :consfigurator.property.cmd)
-(defprop run :posix (&rest args)
- "A property which can be applied by running a shell command. ARGS is either
-a single string specifying a shell-escaped command, or number of strings which
-will be shell-escaped and then concatenated.
+(defprop single :posix (&rest args)
+ "A property which can be applied by running a single shell command. ARGS is
+either a single string specifying a shell-escaped command, or number of
+strings which will be shell-escaped and then concatenated.
-(Note that bypassing the shell could only be done within a :LISP property.)
+(Note that bypassing the shell can only be done within a :LISP property.)
Keyword argument :ENV is a plist of environment variables to be set when
running the command, using env(1)."