diff --git a/development.ini b/development.ini index b8936c17446e3554a163d7d775bf09ec0ed5d250..d89f6d0bdca5a0967b00c5483aabed1b344f245d 100644 --- a/development.ini +++ b/development.ini @@ -1,7 +1,10 @@ # This is inventory file for development stage [webserver] -webserver[000:004].test.example.com +webserver[000:004].dev.example.com [postgresql] -postgresql[000:000].test.example.com \ No newline at end of file +postgresql[000:000].dev.example.com + +# Sets the environment to development(dev) or production (prod) or test +environment=dev \ No newline at end of file diff --git a/production.ini b/production.ini index b5cc86c759531fdeb4d96a64317e8129f85ddd12..7938e8937984272617b30b334dab03663a7c916e 100644 --- a/production.ini +++ b/production.ini @@ -4,4 +4,7 @@ webserver[000:004].prod.example.com [postgresql] -postgresql[000:000].prod.example.com \ No newline at end of file +postgresql[000:000].prod.example.com + +# Sets the environment to development(dev) or production (prod) or test +environment=prod \ No newline at end of file diff --git a/test.ini b/test.ini index 1d8afb24de4072000e1ef667a1606bab626d5230..0bba09cf55de4c0b949748360f10db0f0d2eb0f4 100644 --- a/test.ini +++ b/test.ini @@ -1,7 +1,10 @@ # This is inventory file for test stage [webserver] -webserver[000:004].dev.example.com +webserver[000:004].test.example.com [postgresql] -postgresql[000:000].dev.example.com \ No newline at end of file +postgresql[000:000].test.example.com + +# Sets the environment to development(dev) or production (prod) or test +environment=test \ No newline at end of file