korrekte ids, hier werden von zypper keine quotes erwartet, da nur

zahlen moeglich sind
This commit is contained in:
Daniel Heule 2013-12-04 15:32:31 +01:00
parent a37c48ed43
commit 72bbf93282
1 changed files with 3 additions and 3 deletions

View File

@ -74,17 +74,17 @@ case "$state" in
;;
absent)
if [ ! -z "$act_id" ]; then
echo zypper $zypper_def_opts removerepo "'$act_id'"
echo zypper $zypper_def_opts removerepo "$act_id"
fi
;;
enabled)
if [ ! -z "$act_id" ]; then
echo zypper $zypper_def_opts modifyrepo -e "'$act_id'"
echo zypper $zypper_def_opts modifyrepo -e "$act_id"
fi
;;
disabled)
if [ ! -z "$act_id" ]; then
echo zypper $zypper_def_opts modifyrepo -d "'$act_id'"
echo zypper $zypper_def_opts modifyrepo -d "$act_id"
fi
;;
*)