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

zahlen moeglich sind
remotes/origin/4.0-pre-not-stable
Daniel Heule 11 years ago
parent a37c48ed43
commit 72bbf93282
  1. 6
      cdist/conf/type/__zypper_repo/gencode-remote

@ -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
;;
*)

Loading…
Cancel
Save