aboutsummaryrefslogtreecommitdiff
path: root/etc/default.fln
diff options
context:
space:
mode:
Diffstat (limited to 'etc/default.fln')
-rw-r--r--etc/default.fln9
1 files changed, 8 insertions, 1 deletions
diff --git a/etc/default.fln b/etc/default.fln
index 178af18..d3da5eb 100644
--- a/etc/default.fln
+++ b/etc/default.fln
@@ -15,9 +15,16 @@
15 along with Eclat. If not, see <http://www.gnu.org/licenses/>. */ 15 along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
16 16
17if (.Response.Errors) { 17if (.Response.Errors) {
18 error("Error: ",.Response.Errors.Error.Message,"\n"); 18 if (.Response.Errors.Error.Code[DryRunOperation]) {
19 print(dequote(.Response.Errors.Error.Message),"\n");
20 } else if (.Response.Errors.Error.Code[UnauthorizedOperation]) {
21 error(dequote(.Response.Errors.Error.Message),"\n");
19 exit(1); 22 exit(1);
20 } else { 23 } else {
24 error("Error: ",dequote(.Response.Errors.Error.Message),"\n");
25 exit(1);
26 }
27} else {
21 error("Unrecognized response:\n"); 28 error("Unrecognized response:\n");
22 dump(.); 29 dump(.);
23 exit(2); 30 exit(2);

Return to:

Send suggestions and report system problems to the System administrator.