[yast-commit] r66263 - /branches/SuSE-Code-11-SP2-Branch/fcoe-client/src/fcoe-client_finish.ycp
Author: gs Date: Wed Oct 5 14:04:35 2011 New Revision: 66263 URL: http://svn.opensuse.org/viewcvs/yast?rev=66263&view=rev Log: fix syntax errors Modified: branches/SuSE-Code-11-SP2-Branch/fcoe-client/src/fcoe-client_finish.ycp Modified: branches/SuSE-Code-11-SP2-Branch/fcoe-client/src/fcoe-client_finish.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/fcoe-client/src/fcoe-client_finish.ycp?rev=66263&r1=66262&r2=66263&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/fcoe-client/src/fcoe-client_finish.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/fcoe-client/src/fcoe-client_finish.ycp Wed Oct 5 14:04:35 2011 @@ -50,7 +50,7 @@ string command = ""; list <map> netcards = FcoeClient::GetNetworkCards(); - if ( netcards != $[] ) + if ( netcards != [] ) { y2milestone( "Copying files /etc/fcoe/* to destination" ); // copy fcoe config files to destdir @@ -72,7 +72,7 @@ // copy sysconfig files file_name = sformat( "/etc/sysconfig/network/ifcfg-%1\.%2", - card["dev_name"]:"", card["vlan_interface"] ); + card["dev_name"]:"", card["vlan_interface"]:"" ); command = sformat ( "cp -a %1 '%2/etc/sysconfig/network'", file_name, String::Quote(Installation::destdir) ); y2milestone( "Executing command: %1", command ); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
gs@svn2.opensuse.org