diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/platform/faq.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/platform/faq.md b/docs/platform/faq.md new file mode 100644 index 0000000..0fa04e4 --- /dev/null +++ b/docs/platform/faq.md @@ -0,0 +1,23 @@ +Where do i find the time a server was last deployed ? +----------------------------------------------------- + +The puppet state file on the node indicates the last puppetrun: + + ls -la /var/lib/puppet/state/state.yaml + +What resources are touched by puppet/leap_platform (services/packages/files etc.) ? +----------------------------------------------------------------------------------- + +Log into your server and issue: + + grep '".*":' /var/lib/puppet/state/state.yaml |sort + + +How do i change the domain of my provider ? +------------------------------------------- + +* First of all, you need to have access to the nameserver config of your new domain. +* Update domain in provider.json +* remove all ca and cert files: `rm files/cert/* files/ca/*` +* create ca, csr and certs : `leap cert ca; leap cert csr; leap cert dh; leap cert update` +* deploy |