2010-10-06 13:46:29 +02:00
|
|
|
--
|
|
|
|
-- Table: basepacket
|
|
|
|
--
|
|
|
|
INSERT INTO basepacket (basepacket_code, description, sorting, valid)
|
|
|
|
VALUES ('DW/B', 'Dynamic-Web/Base', 100, true);
|
|
|
|
INSERT INTO basepacket (basepacket_code, description, sorting, valid)
|
|
|
|
VALUES ('SW/B', 'Static-Web/Base', 200, true);
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Table: basecomponent
|
|
|
|
--
|
|
|
|
INSERT INTO basecomponent (basecomponent_code, description, sorting, valid)
|
|
|
|
VALUES ('TRAFFIC', 'Monatliches Datenvolumen in GB', 100, true);
|
|
|
|
INSERT INTO basecomponent (basecomponent_code, description, sorting, valid)
|
|
|
|
VALUES ('QUOTA', 'Festplattenspeicherplatz in MB', 200, true);
|
|
|
|
INSERT INTO basecomponent (basecomponent_code, description, sorting, valid)
|
|
|
|
VALUES ('TOMCAT', 'Nutzung eines eigenen Tomcat-Servers', 300, true);
|
|
|
|
INSERT INTO basecomponent (basecomponent_code, description, sorting, valid)
|
|
|
|
VALUES ('ZOPE', 'Nutzung eines eigenen Zope-Servers', 310, true);
|
|
|
|
INSERT INTO basecomponent (basecomponent_code, description, sorting, valid)
|
|
|
|
VALUES ('APACHE', 'Nutzung eines eigenen Apache-Servers', 310, true);
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Table: component
|
|
|
|
--
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 128, 40960, 128, 128, 128, false FROM basepacket, basecomponent WHERE basepacket_code='DW/B' AND basecomponent_code='QUOTA';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 512, 40960, 512, 512, 512, false FROM basepacket, basecomponent WHERE basepacket_code='SW/B' AND basecomponent_code='QUOTA';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 2, 40960, 2, 2, 2, false FROM basepacket, basecomponent WHERE basepacket_code='DW/B' AND basecomponent_code='TRAFFIC';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 4, 40960, 4, 4, 4, false FROM basepacket, basecomponent WHERE basepacket_code='SW/B' AND basecomponent_code='TRAFFIC';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 0, 4, 0, 1, 0, false FROM basepacket, basecomponent WHERE basepacket_code='DW/B' AND basecomponent_code='TOMCAT';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 0, 0, 0, 1, 0, false FROM basepacket, basecomponent WHERE basepacket_code='SW/B' AND basecomponent_code='TOMCAT';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 0, 4, 0, 1, 0, false FROM basepacket, basecomponent WHERE basepacket_code='DW/B' AND basecomponent_code='ZOPE';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 0, 0, 0, 1, 0, false FROM basepacket, basecomponent WHERE basepacket_code='SW/B' AND basecomponent_code='ZOPE';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 0, 4, 0, 1, 0, false FROM basepacket, basecomponent WHERE basepacket_code='DW/B' AND basecomponent_code='APACHE';
|
|
|
|
INSERT INTO component (basepacket_id, basecomponent_id, min_quantity, max_quantity, default_quantity, increment_quantity, include_quantity, admin_only)
|
|
|
|
SELECT basepacket_id, basecomponent_id, 0, 0, 0, 1, 0, false FROM basepacket, basecomponent WHERE basepacket_code='SW/B' AND basecomponent_code='APACHE';
|
2011-03-25 17:47:54 +01:00
|
|
|
|
|
|
|
--
|
|
|
|
-- Table: business_partner
|
|
|
|
--
|
|
|
|
INSERT INTO business_partner (member_id, member_code, member_since, shares_signed)
|
|
|
|
VALUES (10000, 'hsh00-hsh', current_date, 0);
|
|
|
|
|
|
|
|
--
|
|
|
|
-- table: contact
|
|
|
|
--
|
|
|
|
INSERT INTO contact (bp_id, salut, first_name, last_name, firma, email)
|
|
|
|
SELECT bp_id, 'Herr', 'Uwe', 'Mueller', 'Hostsharing eG', 'service@hostsharing.net' FROM business_partner WHERE member_id=10000;
|
|
|
|
|
|
|
|
--
|
|
|
|
-- table: bank_account
|
|
|
|
--
|
|
|
|
INSERT INTO bank_account (bp_id)
|
|
|
|
SELECT bp_id FROM business_partner WHERE member_id=10000;
|
|
|
|
|
|
|
|
--
|
|
|
|
-- table: billdata
|
|
|
|
--
|
|
|
|
INSERT INTO billdata (bp_id)
|
|
|
|
SELECT bp_id FROM business_partner WHERE member_id=10000;
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Table: inet_addr
|
|
|
|
--
|
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.66', 'address 66');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.67', 'address 67');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.68', 'address 68');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.69', 'address 69');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.70', 'address 70');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.71', 'address 71');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.72', 'address 72');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.73', 'address 73');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.74', 'address 74');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.75', 'address 75');
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
VALUES (inet '176.9.242.76', 'address 76');
|
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
|
|
|
VALUES (inet '176.9.242.77', 'address 77');
|
|
|
|
INSERT INTO inet_addr (inet_addr, description)
|
|
|
|
VALUES (inet '176.9.242.78', 'address 78');
|
2011-03-25 17:47:54 +01:00
|
|
|
|
|
|
|
--
|
|
|
|
-- Table: Hive
|
|
|
|
--
|
|
|
|
INSERT INTO hive (hive_name, inet_addr_id, description)
|
2011-12-16 14:37:59 +01:00
|
|
|
SELECT 'h81', inet_addr_id, 'Test Hive h081' FROM inet_addr WHERE inet_addr = inet '176.9.242.67';
|
2011-03-25 17:47:54 +01:00
|
|
|
|
|
|
|
--
|
|
|
|
-- table: packet
|
|
|
|
--
|
|
|
|
INSERT INTO packet (packet_name, bp_id, hive_id, created, cur_inet_addr_id)
|
|
|
|
SELECT 'hsh00', business_partner.bp_id, hive.hive_id, current_date, inet_addr.inet_addr_id FROM business_partner, hive, inet_addr
|
2011-12-16 14:37:59 +01:00
|
|
|
WHERE hive_name='h81' AND inet_addr = inet '176.9.242.68' AND member_id = 10000;
|
2011-03-25 17:47:54 +01:00
|
|
|
INSERT INTO packet (packet_name, bp_id, hive_id, created, cur_inet_addr_id)
|
|
|
|
SELECT 'hsh01', business_partner.bp_id, hive.hive_id, current_date, inet_addr.inet_addr_id FROM business_partner, hive, inet_addr
|
2011-12-16 14:37:59 +01:00
|
|
|
WHERE hive_name='h81' AND inet_addr = inet '176.9.242.69' AND member_id = 10000;
|
2011-05-19 13:06:51 +02:00
|
|
|
|
|
|
|
--
|
|
|
|
-- table: packet_component
|
|
|
|
--
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 1, packet.packet_id, 2, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh00';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 2, packet.packet_id, 128, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh00';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 3, packet.packet_id, 0, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh00';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 4, packet.packet_id, 0, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh00';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 5, packet.packet_id, 0, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh00';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 1, packet.packet_id, 2, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh01';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 2, packet.packet_id, 128, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh01';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 3, packet.packet_id, 0, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh01';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 4, packet.packet_id, 0, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh01';
|
|
|
|
INSERT INTO packet_component (basepacket_id, basecomponent_id, packet_id, quantity, created)
|
|
|
|
SELECT 1, 5, packet.packet_id, 0, current_date FROM packet
|
|
|
|
WHERE packet.packet_name = 'hsh01';
|
|
|
|
|
2011-03-25 17:47:54 +01:00
|
|
|
--
|
|
|
|
-- table: unixuser
|
|
|
|
--
|
|
|
|
INSERT INTO unixuser (name, comment, shell, homedir, locked, packet_id, userid)
|
|
|
|
SELECT 'hsh00', 'packet hsh00', '/bin/bash', '/home/pacs/hsh00', FALSE, packet_id, 10001 FROM packet
|
|
|
|
WHERE packet_name='hsh00';
|
|
|
|
INSERT INTO unixuser (name, comment, shell, homedir, locked, packet_id, userid)
|
|
|
|
SELECT 'hsh01', 'packet hsh01', '/bin/bash', '/home/pacs/hsh01', FALSE, packet_id, 10002 FROM packet
|
|
|
|
WHERE packet_name='hsh01';
|
|
|
|
INSERT INTO unixuser (name, comment, shell, homedir, locked, packet_id, userid)
|
2011-05-05 20:12:04 +02:00
|
|
|
SELECT 'hsh01-ad', 'hostmaster ad', '/bin/bash', '/home/pacs/hsh01/users/ad', FALSE, packet_id, 10003 FROM packet
|
2011-03-25 17:47:54 +01:00
|
|
|
WHERE packet_name='hsh01';
|