Verified Commit 36956bbe authored by dockx thibault's avatar dockx thibault
Browse files

:ambulance: Fix(Core) - Changes our tools name to correct ones.

Changes the old naming convention of our tools to the new ones.
Showing with 10 additions and 10 deletions
+10 -10
......@@ -2,7 +2,7 @@
Alias /fusiondirectory /var/www/fusiondirectory/html
<Directory /var/www/fusiondirectory/html>
# Remove the comment from the line below if you use fusiondirectory-setup --encrypt-passwords
# Remove the comment from the line below if you use fusiondirectory-configuration-manager --encrypt-passwords
# include /etc/fusiondirectory/fusiondirectory.secrets
</Directory>
......@@ -89,7 +89,7 @@ if (!file_exists(CONFIG_DIR.'/'.CONFIG_FILE)) {
if (!is_readable(CONFIG_DIR.'/'.CONFIG_FILE)) {
throw new FatalError(
htmlescape(sprintf(
_('FusionDirectory configuration %s/%s is not readable. Please run fusiondirectory-setup --check-config to fix this.'),
_('FusionDirectory configuration %s/%s is not readable. Please run fusiondirectory-configuration-manager --check-config to fix this.'),
CONFIG_DIR,
CONFIG_FILE
))
......
......@@ -102,7 +102,7 @@ class acl
if (!in_array($type, ['subtree', 'base'])) {
$error = new FusionDirectoryError(
nl2br(htmlescape(sprintf(
_("Unkown ACL type \"%s\"!\nYou might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."),
_("Unkown ACL type \"%s\"!\nYou might need to run \"fusiondirectory-configuration-manager --migrate-acls\" to migrate your acls to the new format."),
$type
)))
);
......
......@@ -35,7 +35,7 @@ require_once('accept-to-gettext.inc');
/*!
* \brief Does autoloading for classes used in FusionDirectory.
*
* Takes the list generated by 'fusiondirectory-setup' and loads the
* Takes the list generated by 'fusiondirectory-configuration-manager' and loads the
* file containing the requested class.
*
* \param array $class_name list of class name
......@@ -52,7 +52,7 @@ function fusiondirectory_autoload ($class_name)
echo $trace;
echo "<br/>\n";
}
echo sprintf(_("Fatal error: no class locations defined - please run '%s' to fix this"), "<b>fusiondirectory-setup --update-cache</b>");
echo sprintf(_("Fatal error: no class locations defined - please run '%s' to fix this"), "<b>fusiondirectory-configuration-manager --update-cache</b>");
exit;
}
......@@ -75,7 +75,7 @@ function fusiondirectory_autoload ($class_name)
echo $trace;
echo "<br/>\n";
}
echo sprintf(_("Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"), $class_name, "<b>fusiondirectory-setup --update-cache</b>");
echo sprintf(_("Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"), $class_name, "<b>fusiondirectory-configuration-manager --update-cache</b>");
exit;
}
}
......@@ -921,7 +921,7 @@ function clean_smarty_compile_dir ($directory)
if (is_file($directory.'/'.$file) && !unlink($directory.'/'.$file)) {
$error = new FusionDirectoryError(
htmlescape(sprintf(
_('File "%s" could not be deleted. Try "fusiondirectory-setup --check-directories" to fix permissions.'),
_('File "%s" could not be deleted. Try "fusiondirectory-configuration-manager --check-directories" to fix permissions.'),
$directory."/".$file
))
);
......@@ -1514,7 +1514,7 @@ function load_all_classes ()
sprintf(
htmlescape(_('Cannot locate file "%s" - please run "%s" to fix this')),
htmlescape("$BASE_DIR/$path"),
'<b>fusiondirectory-setup --update-cache</b>'
'<b>fusiondirectory-configuration-manager --update-cache</b>'
)
);
}
......
......@@ -22,7 +22,7 @@
/*!
* \file variables.inc
* Define common locations and variables
* Generated by fusiondirectory-setup
* Generated by fusiondirectory-configuration-manager
*/
require_once('variables_common.inc');
......
......@@ -6,7 +6,7 @@
{$msg2}
</p>
<p>
{t escape=no 1="<strong>fusiondirectory-setup --check-config</strong>"}Run %1 to put the correct right on fusiondirectory.conf{/t}
{t escape=no 1="<strong>fusiondirectory-configuration-manager --check-config</strong>"}Run %1 to put the correct right on fusiondirectory.conf{/t}
</p>
<p>
<input type="submit" name="getconf" value="{t}Download configuration{/t}"/>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment