/usr/share/zentyal/templates/samba/delete.mas is in zentyal-samba 2.3.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!-- vim: ts=4 sw=4 nowrap filetype=mason
-->
<%args>
$description
$group
</%args>
<%init>
use EBox::Gettext;
</%init>
<h3><% __('Deleting group') %>: <% $description %></h3>
<% __('The group you tried to delete has a directory which contains data, if you remove it all its data will be removed. Please confirm that you want to delete it.') %>
<form action='Del' method='POST'>
<input type='hidden' name='groupname'
value='<% $group %>'/>
<input class='inputButton'
type='submit' name='deleteforce'
value="<% __('Delete') %>">
<input class='inputButton'
type='submit' name='cancel'
value="<% __('Cancel') %>">
</form>
|