find __package* -type f -exec sed -i 's/uninstalled/removed/g' {} \;

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-04-05 16:25:27 +02:00
parent 4ebcdc3ef1
commit ac976c9f70
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ It dispatches the actual work to the package system dependant types.
REQUIRED PARAMETERS
-------------------
state::
The state the package should be in, either "installed" or "uninstalled"
The state the package should be in, either "installed" or "removed"
OPTIONAL PARAMETERS

View File

@ -46,7 +46,7 @@ case "$state" in
echo $aptget install \"$name\"
fi
;;
uninstalled)
removed)
# Remove only if existent
if [ -n "$is_installed" ]; then
echo $aptget remove \"$name\"

View File

@ -44,7 +44,7 @@ case "$state" in
echo pacman "$pacopts" -S \"$name\"
fi
;;
uninstalled)
removed)
if [ "$pkg_version" ]; then
echo pacman "$pacopts" -R \"$name\"
fi

View File

@ -39,7 +39,7 @@ case "$state" in
echo yum $opts install \"$name\"
fi
;;
uninstalled)
removed)
if ! grep -q "$not_installed" "$__object/explorer/pkg_version"; then
echo yum $opts remove \"$name\"
fi