@@ -200,8 +200,11 @@ def main(project_dir=None):
         # :todo: Source DebOps configuration file
         #[ -r ${debops_config} ] && source ${debops_config}
 
-        playbooks_path = find_playbookpath(debops_root, required=True)
-        install_path = os.path.dirname(playbooks_path)
+        playbooks_path = find_playbookpath(debops_root, required=False)
+        if playbooks_path:
+            install_path = os.path.dirname(playbooks_path)
+        else:
+            install_path = DEBOPS_DEFAULT_INSTALL_PATH
 
     roles_path = os.path.join(install_path, 'roles')
 