Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to use launchpad and bazaar

Naroči se

Get notified when there's activity on this post

This question has been flagged
launchpaddevelopmentbugprocedures
3 Odgovori
9916 Prikazi
Avatar
ton123
  • Is there somewhere a description about how it works?
  • What are the procedures?
  • How to find your way through?

Additional points added later:

  • I want to thank you al for your answers.
  • Francesco Apruzzese modified my question by adding bazaar to the question. That is ok for me, thank you for this.
  • The pitfall is the answers loose focus on organisational aspects and get more focus on technicallities (nothing wrong with that.) I explain hereby some more about my first focus.

My first focus was on launchpad.

  • How it works in terms of technicallities is answered, thank you Francesco Apruzzese.
  • What are the procedures? This is done and made by the people, the individuals and there management. What to do with posts, are there rules in terms of time to wait for responses, is there some kind of escalation procedures. Prioritizing, etc.
  • How to find your way through? It is so big and complicated, I think there are depandancies and relations I don't see. I do not see the big picture.
  • How can I find out a problem that I have is a reported bug?
3
Avatar
Opusti
Avatar
Francesco OpenCode
Best Answer

Launchpad is based on a VCS (Version Control System) called bazaar. If you want know how it works, this is not the right location.This is the launchpad official help and this is a manual about bazaar.

2
Avatar
Opusti
Avatar
AJ Schrafel Paper Corp
Best Answer

to get openerp via bazaar do the following on a fresh install, assuming a user named openerp owns the files on your server:

sudo apt-get install bzr
sudo su - openerp
cd /opt/openerp
bzr branch lp:openobject-server/7.0 server
bzr branch lp:openobject-addons/7.0 addons
bzr branch lp:openerp-web/7.0 web

then when you want to get the latest version, you would pull the updates.

cd /opt/openerp/server
sudo bzr pull
cd ../addons
sudo bzr pull
cd ../web
sudo bzr pull

Then you would have to stop the server, update all the modules for your database using the -u command, press Ctrl+C, then start your server again. This is a redundant operation, but necessary if you are using a script to run openERP

2
Avatar
Opusti
Francesco OpenCode

Never and never and never and never install OpenERP as root user!!! Never use sudo to install openERP!!!

AJ Schrafel Paper Corp

First, the script doesn't suggest you install as the root user, that is the purpose of changing to the openerp user. Second, This is the way it is presented in a couple of installation guides, if you have a better method, why don't you share it instead of just criticizing.

Francesco OpenCode

I criticize when something is wrong for the system security. This is a simple installation system to use openerp without use root user: http://wiki.openerp-italia.org/doku.php/area_tecnica/installazione/v7.0_ubuntu_12.04/openerp

AJ Schrafel Paper Corp

your example says to do the same thing. Installiamo il pacchetto bzr:

openerp@ubuntu:~$sudo apt-get install bzr

poi scarichiamo i pacchetti:

openerp@ubuntu:~$mkdir lp openerp@ubuntu:~$cd lp openerp@ubuntu:~$bzr branch lp:openobject-server/7.0 openerp openerp@ubuntu:~$bzr branch lp:openerp-web/7.0 web openerp@ubuntu:~$bzr branch lp:openobject-addons/7.0 addons

Francesco OpenCode

It's not equal...you install openERP in /opt...we no!

AJ Schrafel Paper Corp

First you said not to install as root user, which I was not. Then you linked to installation instructions that list exactly the same method to use bzr that I proposed in the first place. Now you are changing your problem to the installation directory? Why does that matter? /opt is an appropriate directory. /opt is not a security issue.

Francesco OpenCode

if you see ls -lah in your root directory you can see that: drwxr-xr-x 3 root root 4,0K mar 14 17:52 opt! to use openERP in opt, you must abiity it to read file as root!

AJ Schrafel Paper Corp

that is why i am installing it in a directory with the owner of the user openerp in /opt drwxr-xr-x 5 openerp openerp

wjn

I updated with bzr update [DIR], seems fine also. How to use this -u command to update the database?

AJ Schrafel Paper Corp

The -u tag is used to update all the modules in a database so you don't have to individually update them in the openERP setting menu, the complete command is - <you installation directory>/openerp-server -d <database name> -u all --addons <your addons path>

Francesco OpenCode

-u tag can used with a list of modules to update only the modules indicates. For example "-u sale" updates only sale module or "-u sale,account,product" updates sale, account and product module

wjn

@Frencesco, patently: Thanks for your replies.

Avatar
Gustavo
Best Answer

This document will help you, Using Bazaar with Launchpad

http://doc.bazaar.canonical.com/beta/en/tutorials/using_bazaar_with_launchpad.html

1
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Use Launchpad or Github Solved
launchpad development github
Avatar
Avatar
1
jan. 16
5439
Module doesn't update after modification in the source code
development plugin bug odoo16features
Avatar
Avatar
2
apr. 24
3885
How to know the cause is a bug?
launchpad documentation closed bug
Avatar
Avatar
1
mar. 15
6790
(@@AviancaCol@@)¿Cómo llamar a Avianca en Colombia?
launchpad javascript development contribution ie
Avatar
0
nov. 25
7
how to use bazaar in eclipse for update modules OpenERP ?
launchpad development environment bazaar eclipse
Avatar
Avatar
Avatar
Avatar
4
dec. 15
2045
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now