Commit e688c6d4 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-play: allow mask unvaluable prescription, hide glibc-restore

parent 3c16974a
......@@ -103,8 +103,12 @@ fi
if [ "$1" == "--list-all" ] || [ -z "$*" ] ; then
echo "Run with a name of a play script to run:"
local i
local desc
for i in $psdir/*.sh ; do
printf " %-20s - %s\n" "$(basename $i .sh)" "$($i --description 2>/dev/null)"
desc="$($i --description 2>/dev/null)"
[ -z "$desc" ] && continue
printf " %-20s - %s\n" "$(basename $i .sh)" "$desc"
done
echo
echo "run epm play --list to list installed only or --remove to remove one"
......
#!/bin/sh
[ "$1" != "--run" ] && echo "Uninstall etersoft build of glibc" && exit
[ "$1" != "--run" ] && exit #echo "Uninstall etersoft build of glibc" && exit
[ "$($DISTRVENDOR -d)" != "ALTLinux" ] && echo "Only ALTLinux is supported" && exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment