summaryrefslogtreecommitdiff
path: root/provider_base
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-01-13 20:30:24 -0800
committerelijah <elijah@riseup.net>2013-01-13 20:30:24 -0800
commitec6c48ab589d4174dc192a01c4b99833227c5942 (patch)
treecdacdfbaecaf7c72761b474be0cebaf8ddab5a48 /provider_base
parent886063ca1db3a4ce8fbd72e4ead9b5f2371979a5 (diff)
added ability to customize the webapp appearance
Diffstat (limited to 'provider_base')
-rw-r--r--provider_base/files/branding/head.scss1
-rw-r--r--provider_base/files/branding/tail.scss1
-rw-r--r--provider_base/provider.json3
-rw-r--r--provider_base/services/webapp.json6
4 files changed, 9 insertions, 2 deletions
diff --git a/provider_base/files/branding/head.scss b/provider_base/files/branding/head.scss
new file mode 100644
index 00000000..c100a004
--- /dev/null
+++ b/provider_base/files/branding/head.scss
@@ -0,0 +1 @@
+// no head.scss set
diff --git a/provider_base/files/branding/tail.scss b/provider_base/files/branding/tail.scss
new file mode 100644
index 00000000..919aeec6
--- /dev/null
+++ b/provider_base/files/branding/tail.scss
@@ -0,0 +1 @@
+// no tail.scss set
diff --git a/provider_base/provider.json b/provider_base/provider.json
index de5ad446..b659d47b 100644
--- a/provider_base/provider.json
+++ b/provider_base/provider.json
@@ -25,5 +25,6 @@
},
"vagrant":{
"network":"10.5.5.0/24"
- }
+ },
+ "hiera_sync_destination": "/etc/leap"
}
diff --git a/provider_base/services/webapp.json b/provider_base/services/webapp.json
index e40ed0ca..311f1284 100644
--- a/provider_base/services/webapp.json
+++ b/provider_base/services/webapp.json
@@ -2,7 +2,11 @@
"webapp": {
"modules": ["user", "billing", "help"],
"couchdb_hosts": "= hostnames nodes[:services => :couchdb][:local => local]",
- "couchdb_user": "= global.services[:couchdb].couch.users[:webapp]"
+ "couchdb_user": "= global.services[:couchdb].couch.users[:webapp]",
+ "favicon": "= file_path 'branding/favicon.ico'",
+ "tail_scss": "= file_path 'branding/tail.scss'",
+ "head_scss": "= file_path 'branding/head.scss'",
+ "img_dir": "= file_path 'branding/img'"
},
"definition_files": {
"provider": "= file :provider_json_template",