Compare commits
9 Commits
pkg/dev/ri
...
pkg/dev/ri
Author | SHA1 | Date | |
---|---|---|---|
ccd30b7ab5 | |||
d7af784926 | |||
80bcc8821f | |||
71bbc42786 | |||
a69d0f7386 | |||
93db38dc7f | |||
2ce388eaf9 | |||
138d6d9e06 | |||
68add009e2 |
@ -61,7 +61,7 @@ CREATE TABLE Server (
|
||||
CREATE TABLE Source (
|
||||
SourceId SERIAL PRIMARY KEY,
|
||||
SourceName VARCHAR(255) NOT NULL UNIQUE,
|
||||
SourceURL TEXT
|
||||
SourceDirectory TEXT
|
||||
);
|
||||
|
||||
-- Release
|
||||
@ -97,9 +97,9 @@ CREATE TABLE Applicationservice (
|
||||
ApplicationserviceName VARCHAR(255) NOT NULL,
|
||||
ApplicationserviceDescription VARCHAR(255) NOT NULL,
|
||||
ApplicationserviceReleaseId INTEGER NOT NULL,
|
||||
ApplicationserviceLVIS VARCHAR(255) NOT NULL,
|
||||
ApplicationserviceLVIP VARCHAR(255) NOT NULL,
|
||||
ApplicationserviceLVMP VARCHAR(255) NOT NULL,
|
||||
--ApplicationserviceLVIS VARCHAR(255) NOT NULL,
|
||||
--ApplicationserviceLVIP VARCHAR(255) NOT NULL,
|
||||
--ApplicationserviceLVMP VARCHAR(255) NOT NULL,
|
||||
OS JSON,
|
||||
UNIQUE (ApplicationserviceName, ApplicationserviceReleaseId)
|
||||
);
|
||||
|
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,5 +0,0 @@
|
||||
eole-risotto (0.1-1) unstable; urgency=medium
|
||||
|
||||
* Création du paquet
|
||||
|
||||
-- Cadoles <contact@cadoles.com> Thu, 02 Apr 2020 10:43:03 +0200
|
4
debian/control
vendored
4
debian/control
vendored
@ -14,12 +14,14 @@ Depends: ${misc:Depends},
|
||||
eole-db,
|
||||
eole-postgresql,
|
||||
python3-aiohttp,
|
||||
python3-asyncpg,
|
||||
python3-cheetah,
|
||||
risotto-user,
|
||||
risotto-setting,
|
||||
risotto-provider,
|
||||
risotto-message,
|
||||
risotto-infra,
|
||||
cadoles-risotto-seed
|
||||
cadoles-risotto-seed,
|
||||
risotto,
|
||||
tiramisu,
|
||||
tiramisu-api,
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
set -e
|
||||
|
||||
systemctl start postgresql.service
|
||||
|
||||
psql -Upostgres -c "grant all on all tables in schema public to risotto" risotto
|
||||
psql -Upostgres -c "grant all on all sequences in schema public to risotto" risotto
|
||||
psql -Upostgres -c "grant all on all functions in schema public to risotto" risotto
|
||||
@ -9,4 +11,6 @@ psql -Upostgres -c "grant all on all tables in schema public to tiramisu" tirami
|
||||
psql -Upostgres -c "grant all on all sequences in schema public to tiramisu" tiramisu
|
||||
psql -Upostgres -c "grant all on all functions in schema public to tiramisu" tiramisu
|
||||
|
||||
systemctl stop postgresql.service
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user