[Solved] Got pacman to work through proxy

I'm trying to refresh pacman to check for updates, but I get different errors:
[root@lnx pacman]# pacman -Sy
:: Synchronizing package databases...
testing [###############################################################################] 100% 0K 5.5K/s 00:00:00
could not extract kernel26archck-2.6.15.archck5-1/desc: Invalid argument
current [###############################################################################] 100% 0K 0.0K/s 00:00:03
extra [###############################################################################] 100% 0K 0.0K/s 00:00:05
could not extract abiword-plugins-2.4.1-1/depends: Invalid argument
community [###############################################################################] 100% 0K 0.0K/s 00:00:03
could not extract adns-python-1.1.0-1/desc: Invalid argument
db_read: error: /var/lib/pacman/testing/kernel26archck-2.6.15.archck5-1/depends: No such file or directory
error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
I also tried to install a package, with giving me new errors:
[root@lnx pacman]# pacman -S ethereal
db_read: error: /var/lib/pacman/testing/kernel26archck-2.6.15.archck5-1/depends: No such file or directory
error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
db_read: error: /var/lib/pacman/testing/kernel26archck-2.6.15.archck5-1/depends: No such file or directory
error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
ethereal: not found in sync db
I've tried different mirrors (disabling and enabling mirrors in /etc/pacman.d/{current,extra,community}. Is it just me and my friends computer which gets such errors now? Could it be proxy settings?
My pacman.conf file:
# /etc/pacman.conf
# NOTE: If you find a mirror that is geographically close to you, please
# move it to the top of the server list, so pacman will choose it
# first.
# To re-sort your mirror lists by ping/traceroute results, use the
# /usr/bin/sortmirrors script. It requires the "netselect" package.
# See the pacman manpage for option directives
# GENERAL OPTIONS
[options]
LogFile = /var/log/pacman.log
NoUpgrade = etc/passwd etc/group etc/shadow etc/sudoers
NoUpgrade = etc/fstab etc/raidtab etc/ld.so.conf
NoUpgrade = etc/rc.conf etc/rc.local
NoUpgrade = etc/modprobe.conf etc/modules.conf
NoUpgrade = etc/lilo.conf boot/grub/menu.lst
NoUpgrade = etc/fam/fam.conf
HoldPkg = pacman glibc
ProxyServer = proxy.somedomain.internal:8080
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
# REPOSITORIES
# - can be defined here or included from another file
# - pacman will search repositories in the order defined here.
# - local/custom mirrors can be added here or in separate files
[testing]
Server = ftp://ftp.archlinux.org/testing/os/i686
[current]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/current
[extra]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/extra
#[unstable]
# Add your preferred servers here, they will be used first
#Include = /etc/pacman.d/unstable
[community]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/community
# An example of a custom package repository. See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#Server = file:///home/custompkgs
Any solution on how to fix this?

Moo-Crumpus wrote:
Might be the proxy setting. I can reproduce several errors with a proxy option the kind you have chosen. Never been aware this could do, and in my case, it doesn't. If you have to use the proxy, there is a second way. You might try to handle it with wget, see http://wiki.archlinux.org/index.php/How … tification.
Btw. I had running pacman -Sy without any errors in the last minutes.
Looks better.. I added two proxy lines to /etc/profile and,
/etc/profile:
export http_proxy="http://proxy.somedomain.internal:8080"
export ftp_proxy="http://proxy.somedomain.internal:8080"
/etc/pacman.conf:
XferCommand = /usr/bin/wget -c %u
I got this now:
[root@lnx ~]# pacman -Sy
:: Synchronizing package databases...
--19:06:49-- ftp://ftp.archlinux.org/testing/os/i686/testing.db.tar.gz
=> `testing.db.tar.gz'
Resolving proxy.somedomain.internal... 10.x.y.z
Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [application/octet-stream]
[ <=> ] 5,609 --.--K/s
19:06:49 (133.73 MB/s) - `testing.db.tar.gz' saved [5609]
--19:06:49-- ftp://ftp.archlinux.org/current/os/i686/current.db.tar.gz
=> `current.db.tar.gz'
Resolving proxy.somedomain.internal... 10.x.y.z
Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [application/octet-stream]
[ <=> ] 67,841 --.--K/s
19:06:49 (8.55 MB/s) - `current.db.tar.gz' saved [67841]
--19:06:50-- ftp://ftp.archlinux.org/extra/os/i686/extra.db.tar.gz
=> `extra.db.tar.gz'
Resolving proxy.somedomain.internal... 10.x.y.z
Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [application/octet-stream]
[ <=> ] 239,365 --.--K/s
19:06:50 (9.55 MB/s) - `extra.db.tar.gz' saved [239365]
--19:06:51-- ftp://ftp.archlinux.org/community/os/i686/community.db.tar.gz
=> `community.db.tar.gz'
Resolving proxy.somedomain.internal... 10.x.y.z
Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [application/octet-stream]
[ <=> ] 49,128 --.--K/s
19:06:51 (7.64 MB/s) - `community.db.tar.gz' saved [49128]
[root@lnx ~]# pacman -Su
Targets: aalib-1.4rc5-4 desktop-file-utils-0.10-2 fam-2.7.0-8 gdm-2.8.0.7-6 glib2-2.10.0-1 gnomebaker-0.5.1-2 pango-1.11.99-2 gtk2-2.8.13-1 kernel26-2.6.15.6-1 libgl-dri-6.4.2-2 links-2.1pre20-1 xorg-server-1.0.1-6 xulrunner-1.8.0.1-2
Total Package Size: 45.7 MB
Proceed with upgrade? [Y/n] n
Does this mean I've got the pacman db updated and ready for update? I did only see file downloads....

Similar Messages

  • IPod Touch apps not working through proxy

    Prior to upgrading to the latest iPod Touch software, most of my apps worked through the proxy while on the wireless network at my business. Now, only Safari and few select apps seem to work.
    Any ideas?

    Hello All!
    I think most of the problems you see are not realy issues caused by the proxy but the OS of the IPod.
    I've had some Problems using Apps at Work using manual configured proxy settings.
    Just a short story:
    Usind OS 2.x Mail syncing Exchange worked prefect. Safari and Appstore too.
    Youtube wasn't working cause Ipod first asked DNS Server for IP-Address of an Apple Server (I call IPod Proxy) and our DNS Servers are not allowed to resolve such Names.
    Then I upgraded to OS 3.x. Same manual Proxy settings resulted in Mail syncing Exchange wasn't working.
    Sniffed the Network for the traffic the IPod was sending an saw the following:
    IPod asked DNS for proxy Server IP address, got answer.
    IPod asked Proxy for URL to Exchange-Server and Proxy denied the request cause the Firewall denies Proxy (in DMZ) to connect to internal Servers.
    Then I looked for exclusion list (don't use Proxy for domains ...) and found noting. So this feature isn't there!?
    Then I switched from manual Proxy configuration to Automatic and created a proxy.pac file which url I gave the IPod
    In the Proxy.pac file I used the "FindProxyForUrl" function to determine if the URL contains our local Domain or not. So if the URL contains our local Domain then the script returns to go direct with no proxy. Otherwise the script returns the name and port of the proxy
    Here is the Script I use. This makes Mail (and maybe other Apps) working
    function FindProxyForURL(url, host)
    if (isPlainHostName(host)) {
    return "DIRECT";
    else if (shExpMatch(host,"*.our-local-domain.com")) {
    return "DIRECT";
    else {
    return "PROXY Proxy-Server:port";
    Never the less: I did not make Youtube app working with our Proxy (Squid proxy on Windows). When I'm using Microsoft ISA Server 2006 to connect to the Internet then I can at least search for Videos in the Youtube App (after Changing settings of our DNS Servers to resolve external Names) but I cannot play them cause the Video player in the IPod obivously doesn't care about Proxy settings (Sniffing the Network shows IPod trying to connect directly to Youtube/Google Servers and here is the Firewall saying NO"
    So maybe problems using Apps with a configured Proxy could be because Apple does not have a "Don't use Proxy for" configuration. Youtube (and all other Apps using Video Player to play Video) do not work cause the Video Player does not care about Proxies (so many Video Players )
    Perhaps someone at the Apple Support reads this and cares about

  • Mac Appstore not working through proxy server

    I use net through proxy server of my college(lan). My Appstore doesnt work on it. it keeps blinking or shows "cannot connect to appstore". GoogleChrome and other apps are working fine. Also, appstore worked at my home where i use wifi.

    That's right. It doesn't work through a proxy.

  • Apps won't work through proxy server

    At work I have to connect through a proxy server. Safari works well but none of my apps will connect or update. can anyone help please.
    Brad

    They are probably blocking the port the apps are trying to utilize.

  • How to make a Java Applet work beyond proxy?

    Hi All,
    I have problems with my applet working through proxy.I am using a client applet which makes a socket connection to a Java application running on the same pc as the web server.
    Everything works fine when I am directly connected.However it does't work when connected through a proxy? I am using object o/p & i/p streams for the exchange of data b/w client applet & the server java application.How do I overcome this problem.
    Currently I am using WinGate 3.0.2 as my proxy(I did't see any firewaal setting there) but I intend to make applet work through any proxy for that matter.Using a higher level protocol such as UDP would help in this regard?
    This is urgent.PLease reply ASAP...
    best rgds,
    prithvi

    Try to use http, i don't thing direct open the socket can pass throught the socket if your proxy haven't forward those ports~
    Hi All,
    I have problems with my applet working through
    gh proxy.I am using a client applet which makes a
    socket connection to a Java application running on the
    same pc as the web server.
    Everything works fine when I am directly
    ly connected.However it does't work when connected
    through a proxy? I am using object o/p & i/p streams
    for the exchange of data b/w client applet & the
    server java application.How do I overcome this
    problem.
    Currently I am using WinGate 3.0.2 as my proxy(I
    (I did't see any firewaal setting there) but I intend
    to make applet work through any proxy for that
    matter.Using a higher level protocol such as UDP would
    help in this regard?i think UDP/TCP is not the matter for that!
    This is urgent.PLease reply ASAP...
    best rgds,
    prithvi

  • Using Skype through proxy

    Is it possible to use Skype through a proxy, and only Skype? I don't want other apps to work through proxy, just Skype.

    Is it possible to use Skype through a proxy, and only Skype? I don't want other apps to work through proxy, just Skype.

  • X.509 client certificate not working through Reverse proxy

    Dear expert,
    We are working on fiori infrastructure. Our current scope is to enable X.509 authentication for both internet and intranet. However, the intranet scenario for X.509 authentication is working fine but internet is not, we got error message of "Base64 decoding of certificate failed". For landscape, the only difference between internet and intranet is we have apache reverse proxy in DMZ. We are using gateway as fron-end server, business suite and HANA in the back-end.
    As X.509 authentication works fine under intranet scenario, we assume that the configuration for X.509 for both front-end and back-end are correct. With that assumption, the issue would exist in reverse proxy. We are using apache 2.4.7 with openssl 1.0.1e, but we have upgraded the openssl to the latest version 1.0.1h for SSL certificate generation. Below are the apache configuration for X.509.
    Listen 1081
    <VirtualHost *:1081>
    SSLEngine on
    SSLCertificateFile  "D:/Apache24/conf/server.cer"
    SSLCertificateKeyFile  "D:/Apache24/conf/server.key"
    SSLCertificateChainFile  "D:/Apache24/conf/server-ca.cer"
    SSLCACertificateFile "D:/Apache24/conf/client-ca.cer"
    SSLVerifyClient optional
    SSLVerifyDepth  10
    SSLProxyEngine On
    SSLProxyCACertificateFile "D:/Apache24/conf/internal-ca.cer"
    SSLProxyMachineCertificateFile "D:/Apache24/conf/server.pem"
    AllowEncodedSlashes On
    ProxyPreserveHost on
    RequestHeader unset Accept-Encoding
    <Proxy *>
         AddDefaultCharset Off
         SSLRequireSSL
         Order deny,allow
         Allow from all
    </Proxy>
    RequestHeader set ClientProtocol https
    RequestHeader set x-sap-webdisp-ap HTTPS=1081
    RequestHeader set SSL_CLIENT_CERT  ""
    RequestHeader set SSL_CLIENT_S_DN  ""
    RequestHeader set SSL_CLIENT_I_DN  ""
    RequestHeader set SSL_CLIENT_CERT "%{SSL_CLIENT_CERT}s"
    RequestHeader set SSL_CLIENT_S_DN "%{SSL_CLIENT_S_DN}s"
    RequestHeader set SSL_CLIENT_I_DN "%{SSL_CLIENT_I_DN}s"
    ProxyPass / https://ldcinxd.wdf.sap.corp:1081/  nocanon Keepalive=on
    proxyPassReverse /  https://ldcinxd.wdf.sap.corp:1081/
    We are out of mind on how to resolve this issue. Please kindly help if you have any idea on it.
    thanks,
    Best regards,
    Xian' an

    Hi Samuli,
    Really thanks for your reply.
    Yes, we have tried your suggestion above in the apache configure file above, but when testing the HANA service, we got error message "Certificate could not be authenticated".
    Yes, web dispatcher makes the X.509 authentication much easier as under intranet scenario, no DMZ between browser and web dispatcher. Client certificate pass through web dispatcher directly and it works perfectly this way. Not sure why it doesn' t work through apache reverse proxy.
    Best regards,
    Xian' an

  • Hi there, i installed a system update earlier on my MacBookPro and now it wont connect to wi-fi, working through Network Diagnostics hasn't solved the issue.  all other devices here are connecting normally.  any ideas?

    hi there, i installed a system update earlier on my MacBookPro and now it wont connect to wi-fi, working through Network Diagnostics hasn't solved the issue.  all other devices here are connecting normally.  any ideas?

    Hi, this has worked for a few...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    10.4 instructions...
    Is that Interface dragged to the top of Network>Show:>Network Port Configurations.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.

  • Does iTunes Producer work through a proxy?

    I am trying to get iTunes Producer to work through our corporate proxies. I have opened up TCP 33001 and TCP 44001 like the documentation stated. From the proxy servers I am able to connect to these TCP ports as well as the required UDP ports that are listed in the documentation. However, as soon as I try to upload a book in iTunes Producer, it get an error.
    Does iTunes Producer work in a corporate environment that uses a proxy? Or is it like APNS that will not work through a proxy?

    It seems that your office network is blocking the app. Maybe the old releases used a port not closed by your firewall but in the newer releases it uses another port which it is closed. That maybe explains the reason you cannot connect. You should contact your network administrator.

  • Hasn't anyone out here worked with cut-through proxy

    hasn't enyone out here worked with cut-through proxy with acs. is there no one out here to help me out with cut-through proxy.
    sebastan

    Hi Sebastan,
    For your case, what's the scenario looks like?
    Rgds,
    AK

  • Hi i got a mac mini but when i connect it to my smartax mt882 modem via ethernet it says device not connected can anyone solve this issue it work fine with the usb connection but the ethernet is giving me problems plz help

    hi i got a mac mini but when i connect it to my smartax mt882 modem via ethernet it says device not connected can anyone solve this issue it work fine with the usb connection but the ethernet is giving me problems plz help

    Hello, give this a try...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • [Solved] KDE 4.4 Knetworkmanager, has anyone got this to work yet?

    Been trying to get knetworkmanager working on KDE 4.4 and haven't got it to work yet.  Well initially it did work.  Here's the steps I did.
    1) Had network running '/etc/rc.d/network start
    2) Installed 'kdeplasma-applets-networkmanagement'
    3) Commented out interfaces in '/etc/rc.conf' and defined dhcp:
    eth1="dhcp"
    INTERFACES=(!eth0 !eth1 !wlan0)
    4) Set hostname in '/etc/NetworkManager/nm-system-settings.conf':
    [main]
    plugins = keyfile
    [keyfile]
    hostname = pavilion
    5) Added 'networkmanager' to daemon array in '/etc/rc.conf'
    DAEMONS=(syslog-ng crond alsa hal kdm dnsmasq networkmanager cups netfs)
    6) Added 'network' group to user:
    gpasswd -a gen2ly network
    7) Stopped network '/etc/rc.d/network stop'
    8) Brought down interfaces 'ifconfig eth0 down && ifconfig eth1 down && ifconfig wlan0 down'
    9) Started networkmanager
    /etc/rc.d/networkmanager start
    10) Started networkmanager applet (seems to me it was already started but I guess not??)
    11) Got connected to network.
    After reboot however, the networkmanager applet is telling me 'Unmanaged' when I rollover it, and when I click it it says 'Network Management disabled'.  I've tried a couple things (like un-commenting the network devices on the interfaces line and restarting) to no effect.  Doesn't seem I'm able to get it up again.  Anyone else had luck with this?  Did I miss something?
    Last edited by Gen2ly (2010-02-23 22:51:57)

    Ah, anti-destin that is exactly what was needed to be done.  ... Thank you!  Threw be off a bit, it did .
    Off-topic somewhere here now, Ok, a good deal off-topic.. looking at the wiki page for configuring I think the wiki under section, 'Disable interfaces' is erroneous.  Does NetworkManager really parse rc.conf?  I can't think of any reason it would need to.  I'm thinking that NetworkManager would naturally scan and then do dhcp on wired, followed by wireless.  And for those that do a static ip, they can configure the applet.  To test, I put this in my rc.conf:
    #eth0="dhcp"
    #eth1="dhcp"
    #wlan0="dhcp"
    INTERFACES=(!eth0 !eth1 !wlan0)
    And it worked fine.  I'm thinking I could erase them and not have a problem.
    [wiki]Networkmanager#Disable_interfaces[/wiki]
    Last edited by Gen2ly (2010-02-23 06:03:45)

  • [SOLVED] HDMI audio not working on new TV

    I got a new TV and I get no sound through HDMI from my arch htpc.
    However, I don't think the problem is the TV because:
    1) Audio from other hdmi sources works
    2) When i connect the htpc to a monitor through hdmi and restart, the audio works. While still on, if I disconnect the monitor and reconnect the TV, the audio works through hdmi
    It seems that the problem stems from auto-detection of the hdmi. I have also noticed that if i start the htpc unconnected to a display and then try to connect it after it has booted up, i get no video as well. Shouldnt hdmi cables be hot pluggable.
    Any way to write out the auto detected configuration for audio and disable detection? Something like this should solve my problem
    Edit: solution in post #5 bellow
    Last edited by despotic (2013-05-03 04:12:47)

    Solved by adding monitor's EDID in xorg.conf. The steps to fix with an nvidia card are:
    1) Connect device with which audio works (in my case the monitor)
    2) run nvidia-settings and get edid file for the monitor
    3) edit xorg.conf and add the following under the device section:
    Option "ConnectedMonitor" "DFP"
    Option "CustomEDID" "DFP-0:/etc/X11/monitor.edid"
    4) reboot or restart X
    Sound works now through hdmi connected to TV

  • Urgent : Through proxy my web based application is not being accessible

    Hi,
    Would you please give me the solution as why my application is not getting accessed through proxy (in LAN environment). If I access the same application through dial-up connection, the application works fine and runs successfully.
    When I access through proxy, my java console reads like follows:
    proxyHost=172.31.2.3
    proxyPort=8080
    connectMode=HTTP
    Opening http://gati3pl.com/forms60java/oracle/ewt/alert/resource/AlertBundle_en_US.class proxy=172.31.2.3:8080
    after this information, its giving an alert saying:
    'FRM-92050: Failed to connect to server: gati3pl.com:9001'.
    Would you recommend as what proxy settings to be made, so that my application runs successfully through proxy also.
    I will be very much thankful to you for your kind suggestion.
    Regards
    Thobula Rakesh

    Your can solve this problem in two ways.
    1. Your can configure your browser to bypass proxy for the URL address http://gati3pl.com
    There is a option in IE at Tools->Internet Options->Connections->LAN Settings->Bypass Proxy Server for Local Address.
    2. You can configure your Form Server to run in HTTP mode and by
    default Forms Server runs in SOCKET mode.
    To do this you will have to change the Form Server Service from
    SOCKET mode to HTTP mode and also change access mode in HTML file from SOCKET to HTTP
    Best Regards,
    Darshan Desai

  • Mail app through proxy

    Mail app works(on a gmail account), but only when connected through a network directly, not through a proxy.
    Is there any way to make mail work through a http proxy on port 8080, or is the mail app simply ignoring proxy settings (which are, of course, correctly set)?
    If this is impossible with the standard mail app, is there any mail app that would solve my problem?

    I'm having the same problem. I can't find a solution. Did you ever find the problem?

Maybe you are looking for

  • Is a TSU NOTIFICATION sufficient for encryption documentation?

    I'm using an open source library for my encryption. Can I just upload my TSU NOTIFICATION as proof that I've notified BSI / NSA for the encryption documentation?

  • How do I restore an iCloud back up to my iPad?

    Please help me to find out how to get back all my information from notebookapps and orter stuff that are back-uped in iCloud? We synes my IPad to another computer and then it was gone. What do I do?

  • Track Ball Issues

    The trackball on my new Tour is not very responsive.  I've adjusted the horizontal and vertical sensitivity and am still having no luck.  Is it just a faulty phone or is this one of the downfalls of this new phone? Message Edited by Twixter915 on 08-

  • Using wpl files on line--Not

    I have some music I put together for a  party using different playlists.  I have made a webpage for navagation. I have the songs linked seperately but I also have several sets developed with seperate wpl files.  When I open the html page locally it w

  • ITunes syncing lower-res versions of photos from Aperture library VS iphoto?

    Today I changed my iPad's photo syncing prefs so that it would sync photos from my Aperture library as opposed to iPhoto. To my dismay I've discovered that it appears to be syncing REALLY low-resolution versions of the images compared to what it was