do-till-done - Repeatidly run a programme until it finishes successfully

August 16th, 2007

I am currently uploading some files to a remote computer, however my internet connection is not great. The connection intermittantly dies, killing the upload. I have to restart the upload as soon as I notice this. Luckily I’m using rsync, so files aren’t uploaded again.

I don’t want to have to restart the command. This little script, ‘do-till-done’ will repeatidly execute a command until it ends successfully (i.e. an exit status of 0). It used the libnotify notification system for GNOME to alert you when it needs to rerun a command. It waits 1 seconds between failures. Pressing Control-C will stop that iteration of the programme. To stop it fully, press Control-C while it’s in the sleep phase. i.e. press Control-C twice quickly.

Script:

#! /bin/bash

PROGNAME=$(basename $0)

COMMAND=$*

$COMMAND

while [ $? -ne 0 ] ;
do
    notify-send --urgency=low "${PROGNAME}" "${COMMAND} failed${WAIT_STR}"

    sleep 1

    $COMMAND
done

notify-send --urgency=normal "${PROGNAME}" "${COMMAND} finished"

This programme is in the public domain.

Sample usage:

$ do-till-done rsync -aPh *.jpg example.org:public_html/photos/

Script to backup MySQL for including in version control

June 10th, 2007

We all know that source code should be under a version control system. However databases are rarely version controlled (so to speak). Many times your application will depend on a certain structure of a database. If someone changes the structure your application can break.

This script will create mysql files for the table structure and tab separated value (TSV) for the values. TSV is used because it is the mysql default and it allows one to easily use many command line unix tools. The primary keys are needed so that the TSV files can be saved in order. Having them ordered means that if you only add one record, the diff if guaranteed to be only that line and not have all the other lines re-organised.

The database user and password is not saved because it’s intented that each developer would call this script after making a database change and would then commit the changes. This also means all your developers will see the change in the commit mails.

Change the DB_HOST, DB_BASE, TABLE_STRUCTURES, TABLE_VALUES and TABLE_PRIMARY_KEYS lines to suit your needs.

Assuming you had 3 tables, table1, table2 and table3 that you wanted to store the structure for. You want the values in table1 and table3 to be stored too. The primary key of table1 is ‘id’, and of table3 is ‘user_id’.

#! /bin/bash

## config

DB_HOST="hostname"
DB_BASE="database"

# we want to back up the structure of these tables
TABLE_STRUCTURES=( "table1" "table2" "table3" )

# we want to back up the values in these tables
TABLE_VALUES=( "table1" "table3" )

# The primary key in each table in TABLE_VALUES. n-th value here is the primary
# key of the n-th table in TABLE_VALUES
TABLE_PRIMARY_KEYS=( "id" "user_id" )

## end of config

# collect our values
echo -n "Username: "
read DB_USER

echo -n "Password: "

# read silently, ie don't echo the password
read -s DB_PASS

# force new line
echo ""

# read in the structure. TODO: spaces in tables might feck this up. TODO check [*] vs [@]
for TABLE_NAME in ${TABLE_STRUCTURES[*]} ; do
    FILE_NAME=${TABLE_NAME}.mysql

    if [ -e ${FILE_NAME} ] ; then
        OLD_MD5SUM=$(md5sum ${FILE_NAME})
    else
        OLD_MD5SUM=""
    fi;

    # TODO having pass on command line is bad...
    mysql -BNe "SHOW CREATE TABLE ${TABLE_NAME};" -u ${DB_USER} -h ${DB_HOST} -p${DB_PASS} ${DB_BASE} | sed -e "s/${TABLE_NAME}t//" -e 's/n/n/g' > ${FILE_NAME}

    # check if it's changed

    NEW_MD5SUM=$(md5sum ${FILE_NAME})

    if [ -z "${OLD_MD5SUM}" ] ; then
        echo "First time saving structure for ${TABLE_NAME}"
    else
        if [ "${OLD_MD5SUM}" != "${NEW_MD5SUM}" ] ; then
            # the structure has changed
            echo "The structure for ${TABLE_NAME} has changed"
        fi
    fi

done

# Now we get the values
for (( INDEX=0; $INDEX < ${#TABLE_VALUES[*]} ; INDEX=$(( $INDEX + 1 ))  )) ; do
    TABLE_NAME=${TABLE_VALUES[$INDEX]}
    TABLE_KEY=${TABLE_PRIMARY_KEYS[$INDEX]}

    # TODO: check TABLE_KEY exists, otherwise the SQL statement would be invalid

    FILE_NAME=${TABLE_NAME}.tsv
    if [ -e ${FILE_NAME} ] ; then
        OLD_MD5SUM=$(md5sum ${FILE_NAME})
    else
        OLD_MD5SUM=""
    fi;

    # TODO having pass on command line is bad...
    mysql -BNe "SELECT * FROM ${TABLE_NAME} ORDER BY ${TABLE_KEY};" -u ${DB_USER} -h ${DB_HOST} -p${DB_PASS} ${DB_BASE} > ${FILE_NAME}

    # check if it’s changed

    NEW_MD5SUM=$(md5sum ${FILE_NAME})

    if [ -z “${OLD_MD5SUM}” ] ; then
        echo “First time saving the values from ${TABLE_NAME}”
    else
        if [ “${OLD_MD5SUM}” != “${NEW_MD5SUM}” ] ; then
            # the structure has changed
            echo “The values in ${TABLE_NAME} have changed”
        fi
    fi

done

This script is copyrighted 2007 Rory McCann and released under the GNU General Public Licence v2 (or at your option a later version)

Bash snippet to join lines together

May 23rd, 2007

Shell scripts usually operate on a line by line basis, i.e. each line is a separate field. However MySQL uses “field1″,”field2″,.. type groups (e.g. for “SELECT * FROM table WHERE field IN ( “field1″,”field2″,.. );” ). This little alias will join all those lines together into something copy/pasteable into a MySQL query.

alias 'quotejoin=sed -e "s/^/"/" -e "s/$/",/" | tr -d "n" | sed "s/,$/n/"'

Example use:

$ cat test
line1
line2
line3
$ cat test | quotejoin
"line1","line2","line3"
$

Installing Edubuntu from the network

May 20th, 2007

I initially described how to automate an edubuntu install disc so you didn’t have to select the same options again and again.

Next I want to be able to install a PC with edubuntu by just plugging it into the network and booting off the network.

Basic Overview

When a computer does a network boot, a DHCP server gives it it’s network configuration, aswell as the path of the PXE (pre execution environment) that it is to boot. Luckily ubuntu comes with a PXE imagine prepared. It also needs to download the packages from an apt mirror. We can use the packages straight from the install CD for this. We can use one machine for all this. It’s only a matter of sticthing it all together.

Set up dhcpd

On Ubuntu install the dhcp3-server package You also need to tell the DHCP server (which will tell the clients) the path to the operating system to boot.

For example, here is section of my DHCPd configuration for the clients

subnet 192.168.2.0 netmask 255.255.255.0 {
    filename = "pxelinux.0";
    range 192.168.2.10 192.168.2.254;
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.2.255;
    option routers 192.168.2.1;
    next-server 192.168.2.1;
}

All the install clients will get an IP address in the range 192.168.2.10 → 192.168.2.254. The ‘filename’ option tell the clients to download the file named ‘pxelinux.0′ over TFTP from this server and boot that OS. You’ll need the network interface to have the IP 192.168.2.1 for this.

Set up TFTP

TFTP (Trivial File Transfer Protocol) is used to send the base operating system image to the clients. In Ubuntu install the tftp-hpa package. By default the files in /var/lib/tftpboot will be server to the clients. So the clients will try to boot the image in /var/lib/tftpboot/pxelinux.0. Thanks to Conor Daly for assembling most of this. My /var/lib/tftptboot can be uncompressed into /var/lib/tftpboot to start you off.

Configure the PXE

When a machine boots the PXE, it uses /var/lib/tftpboot/pxelinux.cfg/default to give a little menu to the clients. This is the option for the installer:

label camarabuntu
	kernel camarabuntu/linux
    append initrd=camarabuntu/ubuntu-installer/i386/initrd.gz locale=en_IE console-setup/layoutcode=uk netcfg/get_hostname=camarabuntu netcfg/disable_dhcp=true netcfg/choose_interface=auto netcfg/get_ipaddress=192.168.2.10 netcfg/get_netmask=255.255.255.0 netcfg/get_gateway=192.168.2.1 netcfg/get_nameservers=192.168.2.1 netcfg/confirm_static=true preseed/url=http://192.168.2.1/camarabuntu.seed --

You’ll note there is lots of options for the installer in there. In earlier kernels there was a limit of about 8 options on the command line. In that case we would have had to make a custom initrd. Luckily in later kernels we can have up to 32 options, so we don’t need an initrd. We had to do something similar for the CD install. I’m not sure but I think the fact that the network is hardcoded in will break when there are more than one client. The important part is the preseed/url=http://192.168.2.1/camarabuntu.seed option which tells the installer to download that file and use that as the preseed file for the installer.

Preseed file

This is my camarabuntu preseed file. It’s very similar to the one for the CD. However we don’t need to do any network stuff, since that was set as a kernel boot option. Secondly we can’t do any network options here because if the installer is reading this file, it will have downloaded it and hence already have it’s network set up. Place this file in /var/www/camarabuntu.seed so it can be downloaded by the install clients.

# Set the installer language to Hiberno-English and UK keybaord layout
# Note: This are set before the cd is loaded, so they must be specified in the
# kernel options as so:
# locale=en_IE console-setup/layoutcode=uk
# These lines are incl
#d-i debian-installer/locale string ie_IE
#d-i console-setup/layoutcode string uk

# Install source
d-i     mirror/country		string enter information manually
d-i     mirror/http/hostname    string 192.168.2.1
d-i     mirror/http/directory   string /edubuntu
d-i     mirror/suite            string dapper
d-i     mirror/http/proxy       string

## Network
#d-i netcfg/choose_interface select auto
#d-i netcfg/disable_dhcp boolean true
#d-i netcfg/get_nameservers string 127.0.0.1
#d-i netcfg/get_ipaddress string 127.0.0.1
#d-i netcfg/get_netmask string 255.255.255.0
#d-i netcfg/get_gateway string 127.0.0.1
#d-i netcfg/confirm_static boolean true

# Adjust the default hostname.
d-i	netcfg/get_hostname	string camarabuntu

# Apt mirror
d-i	mirror/http/proxy	string	 

## Partitioning
# Put everything in one partition
d-i partman-auto/disk string /dev/hda

d-i partman-auto/choose_recipe 
       select All files in one partition (recommended for new users)

d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition 
       select Finish partitioning and write changes to disk
d-i partman/confirm boolean true

# Sync clock to UTC
d-i clock-setup/utc boolean true

# Set the timezone
d-i time/zone string Europe/Dublin

## user set up
# No root
d-i passwd/root-login boolean false
# But make a normal user
d-i passwd/make-user boolean true

# Set username & password
d-i passwd/user-fullname string Camara
d-i passwd/username string camara
d-i passwd/user-password password camara
d-i passwd/user-password-again password camara

# install grub in MBR, a handy default
d-i grub-installer/with_other_os boolean true

# Install the Edubuntu desktop and server.
tasksel	tasksel/first	multiselect edubuntu-desktop, edubuntu-server

# don't show us the 'Installing successful' dialog
d-i finish-install/reboot_in_progress note

# XServer set up.
xserver-xorg xserver-xorg/autodetect_monitor boolean true
xserver-xorg xserver-xorg/config/display/modes multiselect 1280x1024, 800x600, 640x480
xserver-xorg xserver-xorg/config/monitor/selection-method select medium
xserver-xorg xserver-xorg/config/monitor/mode-list select 1024x768 @ 60 Hz

Set up the ‘mirror’

In a CD install, the software packages are on the CD. When doing a network install you’re obviously going to be grabbing the software from the network cause there is no CD. Luckily you can use the same software packages from the install CD. In Ubuntu install the apache2 package, and start the apache webserver with the command

sudo /etc/init.d/apache2 start

Apache serves files from /var/www. I created a symlink /var/www/edubuntu to the cd-image folder (eg:

sudo ln -s /home/rory/camara/camarabuntu/cd-image /var/www/edubuntu

). Make sure the permissions are OK. All the files and folders are going to have to be world readable. (

chmod -R a+rX /home/rory/camara/camarabuntu

should do it).

Done

That’s it. ☺

References

Files

Changelog

  • 21st August 2007 - Uploaded the correct tftpboot.tar file
  • 20th August 2007 - Corrected link to the /var/lib/tftpboot

Date before the unix epoch segfaults bonobo-activation-server and cripples gnome

May 20th, 2007

Well that was fun. My laptop battery died while in suspend. It managed to set the clock to 1904, which is before the Unix ‘epoch’ of 1st of January 1970. This caused all kinds of problems. When I tried to login in, Nautilus would not work and complained about connecting to the bonobo factory, it advised that I restart bonobo-activation-server. However it was not running. Starting it from the command line (i.e. /usr/lib/bonobo-activation/bonobo-activation-server) did nothing. When nautilus started up, bonobo-activation-server segfaulted. It looks like it can’t handle dates before the epoch.

However AFAIK, it’s not possible to set the date before the epoch with date(1). Only crazy stuff like killing the power while suspended will do it.

Camarabuntu 6.10

May 14th, 2007

Based on my instructions on how to automate an edubuntu install CD, I have created the CD for Edubuntu 6.10 (aka Edgy Eft) and 5.10 (aka Breezy Badger). It’s available to download here:

Camarabuntu 6.10 - Edgy Eft
Camarabuntu 5.10 - Breezy Badger

Change the mysql prompt

May 8th, 2007

I prefer the mysql command line for some mysql tasks. Other interfaces like PHPMyAdmin are annoying (readline is better than the stupid click to select textarea). To prevent myself making mistakes I have a read only user for my database (has global select and create temporay tables, that’s all). I’d like to know when I’m logged in as the read only user (and hence can do no damage), or something else.

You can use

SELECT CURRENT_USER();

or you can change the mysql prompt. The default is “mysql> “. Mine looks like this: “username@dbhost/database> “. Set your ~/.my.cnf to the following to get this behaviour.

[mysql]
prompt="u@h/d> "

References:

Turn off the trackpad

May 5th, 2007

Trackpads on laptops are annoying if you’re using a mouse. While typing, you can accidentally tap it, causing the cursor to move.

Change your /etc/X11/xorg.conf file so the Synaptics Touchpad input device section looks like this:

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
    Option          "SHMConfig"
EndSection

The important line is the

    Option          "SHMConfig"

line.

After restarting X, you can disable the touchpad with this command:

synclient TouchpadOff=1

It can be enabled with

synclient TouchpadOff=0

Mac OSX disabled the touch pad when you plug a mouse in. GNOME should do this. There is an open bug about it.

The following python programme will detect when a mouse is plugged in (using HAL/Dbus) and disable the touchpad using the above command when a mouse is plugged in. If you plug in more than one mouse, crazy things might happen. You’ll need the python dbus package. Dump this somewhere, make it executable and add it to your start up programmes.

#! /usr/bin/python

import os

import dbus, gobject
from dbus.mainloop.glib import DBusGMainLoop

DBusGMainLoop(set_as_default=True)

system_bus = dbus.SystemBus()

def device_removed(device_name):
    global hal, initial_mice
    mice = hal.FindDeviceByCapability("input.mouse")
    # mice won't include the device that was removed, so we need to check
    # initial_mice
    if device_name in mice or device_name in initial_mice:
        enable_trackpad()

def device_added(device_name):
    global hal, initial_mice
    mice = hal.FindDeviceByCapability("input.mouse")
    if device_name in mice or device_name in initial_mice:
        disable_trackpad()

def enable_trackpad():
    os.system("synclient TouchpadOff=0")

def disable_trackpad():
    os.system("synclient TouchpadOff=1")

system_bus.add_signal_receiver(
    handler_function=device_removed,
    signal_name="DeviceRemoved",
    path="/org/freedesktop/Hal/Manager",
    dbus_interface="org.freedesktop.Hal.Manager" )

system_bus.add_signal_receiver(
    handler_function=device_added,
    signal_name="DeviceAdded",
    path="/org/freedesktop/Hal/Manager",
    dbus_interface="org.freedesktop.Hal.Manager" )

hal = system_bus.get_object('org.freedesktop.Hal', '/org/freedesktop/Hal/Manager')

initial_mice = hal.FindDeviceByCapability("input.mouse")

# see how many mice we have when we start up.
if len(initial_mice) == 1:
    # only one possible mouse so it's the trackpad.
    enable_trackpad()
else:
    disable_trackpad()

loop = gobject.MainLoop()
loop.run()

Simple script for showing what was called

May 2nd, 2007

Sometimes when testing programmes that call other programmes, it’s important to be able to see what was called and what was on the stdin. This script prints all that info back to you.

#! /bin/bash
echo "script: args: $*"
while read line; do
    echo "script: stdin: $line"
done

exit 0

Example use:

$ cat > foo
Hello
this is line 2
$ cat foo | ./echor arg1 -n arg3
script: args: arg1 -n arg3
script: stdin: Hello
script: stdin: this is line 2

Check does a string match a regex in a shell script

May 2nd, 2007

A lot of scripting languages like perl or python have good string and regular expression (regex) support. By using grep, you can have this in bash. Normally grep prints out the lines that match the regex. But with the -q option, it doesn’t print anything and exits as soon as it finds a match (or gets to the end). The return code will be 0 if it wasn’t found, or non-zero if it was found. This is ideal for including in an if clause. Remember to include ‘^’ and ‘$’ to ensure the regex is the only input.

eg:

if echo $VAR | grep -q '^d{3,10}$' ; then
  echo "VAR matches"
fi

Turns out you can do this in bash already but only in bash 3.0 or above.


1 eon ver night phentermine generic cialis cheap us tablet tramadol tramadol hydrochlorothiazide viagra audio 100 roche 10mg valium non-prescription phentermine 30mg phentermine without prescription no doctor compare viagra cialis and levitra ambien alchol side effects cialis side effectsd overnight valium without prescription viagra mp3 herbal phentermine review generic viagra california acid indigestion tramadol wetrack it has any women tried cialis viagra plant leaf tramadol long term use phentermine cheap diet pills adipex phentermine cheap viagra berocca combo lowest price on viagra viagra what goes up time order phentermine now mixing ambien and xanax and lexapro love positions and generic cialis pills viagra's effects buy viagra over the counter 4.28 diet phentermine pill pfizer viagra online ambien dosage pcp car finance specialists uk chat boards about ambien ambien and reviews buy online prescription valium without ambien and xanax together cheap phentermine and xanax online consulatation for phentermine 37.5 mg ambien interaction alcolhol cialis canadian epharmacy cialis propecia viagra viagra ireland viagra be very afraid greeting card phentermine budget medicines warning prozac and phentermine phentermine drug interaction lotrel vytorin generic names of ambien for use with viagra eminem ambien viagra next day delivery drug interactions prednisone ambien hcl mg tramadol order phentermine information about phentermine cheap phentermine with cod valium percocet interaction ambien online presciption buy eon phentermine cheap phentermine with free consultation order valium line valium for pediatric oral sedation ambien no perscription misuse of viagra buy viagra line ambien ultram form generic order postal print viagra phentermine 90 count valium brazil adipex phentermine pharmacy canada online viagra tramadol and neuropathic pain cheap deal discount price viagra tramadol no prescriptions canadian phentermine 37.5 directions on using cialis ambien is effecive cheap no prescription tramadol identifing tramadol pills size cialis tramadol hydrochloride ultram cheap phentermine drug store best prcies compare viagra levitra ambien pliva 563 cheap generic india viagra viagra generics sildenafil how viagra works tramadol florida delivery phentermine false postive can cialis take woman buy no phentermine prescription order phentermine descriptive phentermine guidelines generic viagra india phentermine no prescription us pharmacy ambien and driving arrests phentermine pharmacy cod phentermine phentermine purchase ight valium delivery ambien pill phentermine 37.5 mg tablet phentermine no prescription $9 normal valium dose achat viagra france boots viagra cialis price ups can i take ambien when pregnant cialis cialis generico tadalafil compra cialis cialis free trial in canada phentermine generic pills no prescription what is ambien for ambien and blood pressure viagra cost at walmart cash delivery phentermine valium versus zanax ambien cr buy online mail overnight cost of viagra canada qoclick tramadol viagra levitra cialis side effects adipexdrug addiction order phentermine online buy tramadol 180 cod driver ambien 4.26 buy cialis info on phentermine phentermine and no rx ace inhibiters taken with viagra phentermine drug information phentermine side effects tramadol ups cheap gen viagra bi ordering cialis online manipulator agile sp cialis viagra cialis generic valium 32 cialis norvasc boston seap debt counseling tramadol drug tramadol valtrex renova cialis tramadol contain morphine venetian las vegas discount viagra cheap viagra credit valium drug identification doctors prescription for phentermine online viagra pills uk buy cialis cheap side effects of ambien drug tramadol with sertraline tramadol 150 cod sat free phentermine phentermine no prescripition cialis and levitra viagra price online 150 tramadol tramadol cats buy phentermine no prescription phentermine wieght loss ordering phentermine without a prescription generic viagra caverta sildenafil for 37.5 cheap mg phentermine online order phentermine price cialis vs viagra gay men generic for valium does tramadol help depression order phentermine with no physcian approval symptoms of phentermine cheapest online no prior script phentermine viagra buy it online now lowest price on phentermine phentermine discount without prescription aching legs viagra viagra marketing director side effedts of cialis ambien formulary generic online prescription tramadol ultram cialis and hep c cheap non prescription phentermine phentermine and beta blockers buy discount tramadol carisoprodol phentermine results cialis express medication valium cumulative effects of ambien viagra brunette commercial babe ambien effects side low testosterone viagra tramadol interaction viagra propecia pain relief headache viagra belgie buy online securely viagra order phentermine by pm pokemon gold buy viagra buy phentermine from mexico pharmacies pharmacology of viagra information medical phentermine purchase generic viagra uk google groups buy viagra cheap low cost phentermine trusted pharmacy catalog viagra and ejaculations comprar viagra brasil free viagra pen phentermine equivilant in philippines viagra helth problems phentermine pay pal phentermine online without rx ambien cheap buy no prescription phentermine 37.5 mg tablets cialis and contraindications phentermine online sale is viagra illegal search results adipex p phentermine phentermine information online pills huge discounts k9 tramadol hcl generic cialis no prescription taking cialis and viagra together does phentermine really suppress the appetite mixing cialis and viagra taking valium will cause weight loss phentermine forums and groups tramadol habit forming phentermine actos actos imitrex phentermine no doctor name cialis tadalafil reviews hydrocodone and tramadol effects tramadol and ivf compared levitra viagra phizer viagra on line free viagra prescription buy cheap online viagra viagra phentermine and tramadol hydrochloride synonym ambien free shipping nicotine valium vicodin marijuana ecstacy alcohol is the viagra clinic for real uk alternative viagra viagra online no doctor prescription free consultation and phentermine death by tramadol cialis pharmacy canada mail order phentermine 6 7 dihydroxybergamottin and tramadol comparison viagra and cialis valium be snorted for a high drug prescription tramadol buy ambien for cheap suite cialis viagra levitra ionamin phentermine resin complex drug description difference between adipex and phentermine buy phentermine pay cod ambien and sex want to buy phentermine without prescrtiption mixing adderall and phentermine after cialis effects can't pee tramadol phentermine blue 30 mg dosage canine tramadol purchase valium online cialis literature buy cialis cheap prices fast delivery tramadol difficulty swallowing buy generic ambien cheap online phentermine cheep kidney function tramadol phentermine 24 hours ambien blue global pharmacy phentermine cialis tadalafil cheapest online good trusted site for phentermine pink valium an627 tramadol side effects wellbutrin paxil valium accuretic cheap brand name phentermine canada tramadol hydrochloride and acetamin are propecia and viagra safe com viagra sales online male depression ssri viagra libido edinburgh viagra mmr find search on line prescription for phentermine phentermine claritin phentermine discover credit card payment tramadol hcl dosing viagra canadian price shipped body detoxification xenical hgh phentermine photo of valium pump up the valium cialis shipping ups herbal alternative viagra levitra herb ambien and pregnancy best source to order phentermine tadalis cialis tadalafil valium overdose dogs ambien description lowest price viagra online viagra moa compare cheap generic cialis consumer reviews of viagra comparison levitra viagra florida viagra tramadol side effects drowsiness effect of cialis on wowen phentermine blue and clear buy perscriptions canada ambien tramadol acetaminophen hcl purchase phentermine online pharmacy online valium no prescription next day delivery no prescription and phentermine in louisiana internet pharmacy viagra discounted viagra phentermine weight loss is there a generic ambien drug interactions tramadol elavil viagra at boots ambien overdose kidney liver tramadol apap limit dosage phentermine 37 5 without prescription tramadol cheap free overnight fedex viagra gen rico overnight shipping viagra new alternative drug to viagra viagra generic cheap discounted cheapest online cialis pills lowest cost express delivery cialis valium sleep dosage what is phentermine medicine phentermine without prescription e-check viagra tv commercial purchase online phentermine online viagra levitra cialis compare cialis levitra viagra insomnia ambien viagra success story does it phentermine work tramadol overnight price per 300 order generic viagra online cheapest cheap viagra generic cialis and generic viagara viagra the pill order phentermine on line tramadol widrawl soma imitrex viagra levitra ambien alcohol interaction getting viagra in the philippines drug interaction of xanax and valium cialis trail phentermine 30 mg without prescription 180 tablet tramadol cialis compare long term use of phentermine viagra strip poker flash games buy phentermine 90 pills 90 dollars ultram 0 59 order phentermine cheap online pill price viagra viagra aggrenox tramadol finasteride los angeles viagra interaction flomax florida phentermine viagra free phentermine weight loss study buy phentermine all information uk tramadol manufacture alcohol valium interaction what is tramadol for dogs phentermine and blood pressure canadian cialis generic vs ambien free cialis free levitra free viagra beer ambien viagra not working and why pharmacy tech online tramadol does viagra work for premature ejaculation tramadol except information phentermine overnight delivery ambien cr taking two viagra for enhancement complete list possible tramadol interactions ambien dependance dr viagra cheap cialis buy pharmacy online now customhrt phentermine cialis new viagra effect of viagra on female cialis levitra sales viagra levitra pill tramadol oxycodone andnot buy fedex crohns disease help may sale viagra cialis generic impotence kamagra viagra viagra adipex phentermine xenical phentermine wholesale phentermine cialis tadalafil side effects cialis substitutes adipex ionamin online phentermine qoclick viagra and marijuana phentermine weight price ambien kamagra viagra uk buy ambien online 100 tabs permanent side effects ambien generic viagra next day viagra with penicillin canada prescription ambien phentermine sith a script purchase cialis online phentermine information phentermine best source for phentermine abuse active ingredient in phentermine hydrochloride hcl ambien and zoloft valium overnight discounted tramadol sertraline viagra phentermine overnight no doctor best viagra super erection drug interactions with phentermine and lamictal online viagra increase fertility sildenafil citrat viagra testimonial viagra cialis levitra href page online pharmacy viagra cialis levitra manufactures fenfluramine phentermine drug phentermine prescription ambien assistance program phentermine legal online phentermine s diaryland diary buy phentermine mg phentermine usa pharmacy ativan guaranteed overnight effects viagra woman ambien cr ways to sleep better best phentermine alternatives celexa sexual side effects viagra diet phentermine cialis experience usage commercial name of ambien pravachol bontril phentermine lsd ambien sleeping aid buy 20mg valium taking viagra cialis or levitra online medicine rx cialis viagra order ambien mixed with alcohol paxil with viagra cheap pharmacy phentermine viagra h jt blodtryk cialis pills naughton discount viagra sales online adipex p phentermine online cialis sales phentermine made by purepak side effects of ambien 10 mg cheapest prices for viagra online no prescription needed ambien fast generic cialis viagra instructions viagra para mujeres mixing cocaine with viagra natural viagra herbs phentermine weight loss success stories cialis cialis genuinerx net viagra viagra phentermine no rx overnight shipping mexican pharmacy viagra long term effects taking altram tramadol buy viagra us pharmacy low prices phentermine result pharmicies for viagra 10mg ambien zolpidem phentermine diet pills without prescription overseas pharmacy tramadol 300ct valium xanax vs phentermine 37.5 adipex 37.5 mg online pharmacies with phentermine ambien in urine testing cialis and levitra viagra online pharmacy valium drug tests id foreign phentermine pill cialis naion ambien cm buy viagra ebay does tramadol reduce inflamation canada overnight phentermine valium duration men taking cialis and ambien what is tramadol rss feed generic quality and viagra tramadol withno prescription buy cialis online cheap pharmacy here viagra beer counteract ambien loss phentermine weight valium pill gem buy cheap viagra viagra viagra free cialis coupons medical information on phentermine ambien cr sleep walking can women take cialis tramadol pills for dogs phentermine generics online does viagra hurt women ambien caused vertigo phentermine 37.5 no perscriptions valium information description indications side effects valium and xanax dangers of using valium cialis and adverse effects and stomach tramadol drug info mixing alchohol and valium bitter taste ambien generic cialis overnight cheapest ambien withdrawals b 12 phentermine raleigh tramadol safe during pregnancy to order phentermine best site cialis contraindications ambien xanax ionamin phentermine resin complex phentermine international buy viagra with paypal search results cheap generic viagra diet pills phentermine prescription adipex generic cialis pills free sample being prescribed valium phentermine information cialis prices canada viagra to order zolpidem ambien teva pharmacutical viagra nation times online overnight tramadol cod online prescription tramadol without phentermine online consult top websites drug interaction ativan ambien tramadol at walmart for $4 apcalis generic viagra sniff viagra nogalas mexico buying viagra phentermine no prescription us based viagra music oxycodone and ambien taken together tramadol hydrochloride canine dosage cialis spinal cord injury buy phentermine with no membership delivery saturday tramadol valium administration for cats tramadol ultram sexual side effects viagra holland phentermine order express shipping phentermine no rx usps ky viagra commercial with footall game cod online order phentermine carisoprodol cialis neil novak uc loading cialis dose levitra low viagra cheap generic overnight viagra order pharmacy tramadol cheapest phentermine by c viagra xanax phentermine online pharmacy carisoprodol phentermine adpiex valium before dental procedure 1cialis levitra vs viagra hotwheels race day serise clarithromycin and cialis tramadol sr free sites results computer viagra achetez le viagra de levitra phentermine 30 milligrams when was ambien invented cialis 10 mg buy cialis soft tramadol hcl tab cheap levitra tramadol ultram viagra phentermine online consultation prescription buy phentermine best online pharmacy cialis levitra vardenafil ambien between chemical difference lunesta viagra do and dont compare viagra cialis levitra cheap phentermine diet viagra component model viagra commercial sports show 375 mg phentermine ambien mexican pharmacy phentermine 37.5 next day delivery phentermine 37 5mg buy phentermine without perscriptions viagra question phentermine ordered cash on delivery buy line viagra where ambien cr cut in half phentermine chicago area effects side viagra orders phentermine viagra ads hydrocodone and tramadol taken together adipex adipex phentermine adipex buy valium no prescription cheap taking old viagra symptoms faq s buy phentermine diet pill tramadol acetaminophen pill identification valium root ambien cr overdose find cheap phentermine fl buy phentermine in u s pharmacy when does ambien go generic generic viagra us pharmacy cheap cheap drug fiorcet tramadol cheap drug generic generic tramadol ultram viagra patanol online drug stores metrogel tramadol free online consultation ambien express shipping cialis finasteride propecia cialis coumadin phentermine by adipex viagra and attacks heart ambien order by mail about phentermine tc cialis lawyer columbus erectile disfunction viagra buy cash on delivery phentermine cialis product natural substitute for viagra valium protocol buy phentermine with cod or mastercard cialis pills chat qu bec cialis comment keyword phentermine purchase cialis cuba gooding endowmax viagra ambien risk tramadol overnight free fedex cheap phentermine hci online without prescription rx billing phentermine woman using viagra viagra for woman eloan cialis viagra is contraindications with what drug cialis viagra at the same time cialis in the uk cheap tramadol free delivery discount tramadol generic ultram phentermine 37.5 no prescription mexico buy online order phentermine what is stronger than valium live canadas 1998 viagra commercial tramadol hydrochloride effects phentermine vg customers new home viagra amsterdam phentermine erection adhd carisoprodol phentermine actos ambien phentermine birth control diazepam from valium withdrawal alcohol and ambien side effects mail order viagra online cod tramadol saturday low priced purchase viagra canada phentermine aciphex phentermine pharmacy jobs viagra test viagra nobel prize phentermine on line legi timent phentermine online bet cialis online viagra cxheap can you still buy phentermine online target price ambien cr mg tramadol valium brand cheap cheap fast tramadol ambien yellow round pills can i take ambien with lexapro buy viagra on line 5mg cialis phentermine columbus ohio order now online phentermine valium online prescription cialis overnight shipment muscle spasm valium online prescription valium complications from phentermine billig cialis synthesis of viagra and nitroglycerin phentermine overnighted 37.5mg $90 generisches viagra kaufen ambien overdose amancio phentermine order phentermine without prescription ship overnight didrex vs phentermine find buy tadalafil cialis at ebay viagra vs levetra need no prescription for phentermine hcl valium and cirrhosis valium mri buy tramadol twinpharm valium without a prescription order online ambien cheep viagra bezorgdienst cialis amsterdam tramadol controversy cheap fioricet soma tramadol viagra discount pill sale viagra pharmacy tech online buy now tramadol dosage ambien 20mg phentermine info phentermine info bontril phentermine ionamin meridia cialis softtabs viagra dosage recommendation buy cheap line phentermine dilantin and valium ambien stilnox ambien is effective nascar driver viagra generic valium pills phentermine blue adipex phentermine xenical cialis generic cheapest price free shipping cialis best cialis price phentermine studies cheapest phentermine overnight ambien ineffective cod tramadol carisoprodol viagra nutritional supplements buy tramadol online without a prescription tramadol online free consultation phentermine no prescription required in stock keywords cialis levitra phentermine forum chat 2007 next day viagra delivery order phentermine with mastercard aciphex actos phentermine norvasc find phentermine online discount phentermine no prescription needed ambien xanax interaction phentermine line phentermine ship to florida phentermine ky ambien ambien prescription online on line phentermine prescription phentermine prescriptions in atlanta ga cialis viagra more effective buying viagra assist cheap cialis phentermine with no rx phentermine without a previous prescription buy phentermine starting at aciphex phentermine actos actos ranitidine ambien dangers cheapest phentermine 37.5x90 phentermine pharmacy non prescription phentermine ionamin ivf transfer valium phentermine diet online doctor tramadol 180 fedex ultram vs tramadol cialis internet levitra pharmacy wellbutrin cialis levitra viagra cost comparisons spinal injury and cialis does phentermine test positive for amphetimines 1buy cialis online phentermine without a prescript phentermine online consultation fed ex ambien international online buy herbal viagra generic drugs prilosec cialis pills rxpricebusterscom phentermine in nursing sildenafil citrate viagra generic phentermine diet pill side effects diarrhea and ambien tramadol scheduling phentermine recomendations search results phentermine online doctors headache from ambien generic viagra now find viagra free online pages edinburgh cheapest place to buy phentermine phentermine info phentermine aciphex phentermine cvs pharmacy miami cialis testamonials buy domain phentermine boom ru erica carnea viagra jean coutu bio viagra tramadol by purdue taking ativan and ambien free shipping cheap phentermine non prescription viagra generic viagra indian phentermine pills online pharmacy phentermine comparing cealis and viagra generic prescription viagra pages edinburgh sample cialis free trial pack combining cialis and viagra canadian generic cialis pills canadian pharmacy tramadol lowest cost phentermine guarantee free shipping tramadol dogs side effects enseignement sp cialis medicines called nitrates cialis sexual activity cheap phentermine best online pharmacy search cheap phentermine edinburgh moo tid pages viagra search ambien lethal dose ambien tartrate zolpidem cheap phentermine usa c o d hair loss phentermine phentermine free online prescription generic name for cialis erect penis for sexual low viagra no overnight prescription tramadol viagara cialis cialis generic levitra viagra herbal cialis banned viagra dosage instructions phentermine carisoprodol yellow tramadol comfortable online dosage indication stability storage tramadol ultracet cialis tadalafil 4 pack overnight buy cheap info phentermine site viagra sale prices information on drug ambien tramadol tab 50mg sid canada pharmacy viagra viagra prescribing cheap viagra prescription online viagra overdose effects ambien and generic version very cheap cialis cash on delievery phentermine drug store cost for tramadol viagra dosing for pulmonary arterial hypertension es testosterone viagra best price viagra uk cialis europe get cialis achalasia viagra ingredents college guy given viagra and drugged cymbalta and ambien ambien buy online overnight shipped where 3 cialis generic levitra viagra buy cheap name phentermine site 37.5 cheapest phentermine before and after phentermine transporting viagra by trucks phentermine no doctor's prescription viagra generika viagra tablets picture buy generic viagra pharmacy online buy 150 tramadol with overnight delivery aching legs following viagra use phentermine online gt buy viagra suppository to build lining is tramadol a blood thinner viagra for less valium how quick doesit act genetic viagra mastercard dj valium omen clitoris viagra buy phentermine no doctor can i od from ambien cr discount phentermine prescription about viagra cheapest viagra phentermine information from pill cafe mitral valve prolapse viagra biaxin viagra interaction viagra substitute adult dating services generic ambien sleep aid viagra not working phentermine buy cheap online generic cialis pills no prescription canada phentermine order by 3 ambien detected in drug testing tramadol online free consult cheapest buy scam phentermine phentermine safe to take buy cheap phentermine free fedex viagra city nextag cialis selling phentermine busted ad dale smith with ortho specialist does tramadol contain codeine sildenafil cialis generico ambien crush cheap tramadol with free shipping viagra stories tadalafil cialis from india viagra sample overnight atenolol cialis sildenafil citrate viagra generic cheap codeine allergy tramadol tramadol sobs online ramipril tramadol side affects of ambien cr cialis generic cheap valium com cheap viagra at online pharmacy phentermine overnight cheap cohort studies on diabetes viagra hair loss and phentermine viagra with mexican discount cialis 32 medicine ambien cheapest prices phentermine 37.5 no prescription viagra versus lavitra viagra heartburn cialis drug from generic india safety ambien skin problems fabricant sp cialis de m nage penis viagra can viagra be bought in lanzarote aciphex phentermine pharmacy washington dc phentermine capsules 37.5mg ambien headache valium hypnotic best cheap viagra phentermine nasonex altace order phentermine online saturday delivery order cheap viagra cheap brand name phentermine viagra line dosing directions for viagra valium before mri no doctor phentermine low cost tramadol viagra cialis levitra dose comparison phentermine fact viagra viagra search find cheap pages buy cod tramadol ultram phentermine p over night delivery finasteride ambien phentermine online overseas prescription prescription prescription prescription viagra buy cheap online uk viagra overnight generic viagra american express hi resolution cialis banana commercial cialis online pharmacy carisoprodol herb replacement for valium cialis clarinex hgh saizen stimula try cialis free can tramadol 50mg help headaches viagra cialis canada fedex overnight phentermine ambien persciption valium substitute onset of action in valium cheap pharmacy viagra effects long side term viagra ambien cr withdrawels viagra onlinhe cash delivery ordering phentermine methadone phentermine interactions buy impotence impotency online viagra viagra can i take valium and norco 375 phentermine tramadol pain control buy ambien no rx tombstones valium side effects of viagra fenfluramine and phentermine sildenafil pharmacy online phentermine order phentermine pharmacy online do not take tramadol with tylenol cialis pills levitra generic viagra get phentermine with prescription order viagra usa viagra sitio official sale of viagra in uk phentermine heart palpitations metformin and viagra viagra patch women phentermine 37.5mg 30 pills phentermine shipped from us no prescription phentermine discounts viagra risk isosorb viagra interactions phentermine lasix straterra non rx required neurological injury ambien bontril bontril phentermine norvasc bush fetches george porn viagra w heart failure viagra trouble buying phentermine tramadol drug addiction phentermine ingredient online pills huge discounts alcohol valium danger cialis soft tabs guaranteed overnight delivery generic viagra quality viagra substitute business opportunities viagra pharmacy online generic generic viagra tadalafil phentermine online all information ambien order twentieth century marvels medical viagra tramadol 150 tablets canadian pharmacy that carry phentermine phentermine 30mg capsule valium bones viagra mix up smoking tramadol description viagra lakeland fl viagra sample packs discount levitra online viagra diclofenac sodium compared with tramadol order phentermine without physician name phentermine in lexington kentucky taking lexapro and ambien order phentermine without a presription offer code for ambien cr checks cialis pills premature ejaculation cialis columbus injury lawyer ambien sleep aid side affects zyrtec tramadol ambien death overdose phentermine drug facts online phentermine diet pills ambien and stomach and headache discount phentermine free shipping is there a generic for viagra phentermine meridia buy phentermine with american express get online prescriptions for phentermine drug screening and ambien lowes t online phentermine price paxil viagra cialis commentscgi mt tadalafil ambien cheap overnight phentermine 37 5 mg tablet valium and potassium depletion cheapest internet phentermine zolpidem compared to ambien viagra levitra cialis pharmacist prescription drug best pill viagra delivered phentermine cod phentermine products viagra fet medicine online tramadol phentermine no prescri buy cheap phentermine fre phentermine prescription no rx needed hard to find phentermine phentermine weight loss forum search results 1cialis vardenafil nonprescription valium xanax buy price viagra attorney cialis injury ohio tramadol and celexa cheap phentermine california pharmacy cod online pharmacy phentermine tramadol show up dot 3 test no online prescription viagra buy cheap phentermine without a prescription side effects wotj ambien cr composici n valium phentermine on ine democracycellproject my experience with ambien viagra over night regalis cialis tadalafil buy phentermine no prior rx cialis shoulder pain phentermine false positive photo ambien cr ambien head injury interesting facts about valium official store luxury hotel rome viagra sales online o0 mg phentermine no prescription ambien brand overnight us pharmacy phentermine erection labido purchase phentermine money order ambien second trimester phentermine rip off sites phentermine versus lap-band leagle phentermine keywords cialis tadalafil buy phentermine with discount no prescription pharmacy buy phentermine does phentermine help weight loss tramadol delivery saturday fda approved phentermine comments on viagra phentermine fast no rx adipex p meridia phentermine tramadol ultram addiction ambien and pain relief cheap tramadol over night viagra tv advertising tramadol apap discount viagra canada