FINAL suepr merge step : added all modules to this super repos

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-19 16:46:59 +02:00
7585 changed files with 1723356 additions and 18 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/bash
drush --always-set vset devel_old_smtp_library "foo/bar";
drush --always-set vset smtp_library "foo/bar";
drush vget smtp_library
echo -e "\n\t\tUninstall with variables set to 'foo/bar':\n"
echo y | drush dis maillog
echo y | drush pm-uninstall maillog
echo -e "\n\t\t Show variables:\n"
drush vget smtp_library
echo y | drush en maillog
echo -e "\n\t\t Show variables after installation:\n"
drush vget smtp_library
drush --always-set vset devel_old_smtp_library "sites/all/modules/maillog/includes/maillog.inc";
drush vget smtp_library
echo -e "\n\t\tUninstall with variables set to 'sites/all/modules/maillog/includes/maillog.inc:\n"
echo y | drush dis maillog
echo y | drush pm-uninstall maillog
echo -e "\n\t\t Show variables:\n"
drush vget smtp_library
echo y | drush en maillog
echo -e "\n\t\t Show variables after installation:\n"
drush vget smtp_library