Module: Yast::AuditLafDialogsInclude

Defined in:
../../src/include/audit-laf/dialogs.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) DiskspaceSettingsDialogContent



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
# File '../../src/include/audit-laf/dialogs.rb', line 244

def DiskspaceSettingsDialogContent
  MarginBox(
    @mbox_x,
    @mbox_y,
    VBox(
      VStretch(),
      Frame(
        # Frame label - keep it short!
        _("Value and Action for Space Is Starting to Run Low"),
        HBox(
          # InputField label - space on disk is starting to run low if the entered value is reached
          HWeight(
            1,
            InputField(Id("space_left"), _("&Space Left on Disk (MB)"))
          ),
          HSpacing(2.0),
          HWeight(
            1,
            ComboBox(
              Id("space_left_action"),
              Opt(:notify),
              # ComboBox label - select an action which is performed if space on disk is low
              _("&Action"),
              @actions_list
            )
          ),
          HSpacing(1.0),
          # InputField label - enter the path to a script (which will be executed)
          HWeight(
            1,
            InputField(Id("space_left_action_exec"), _("Path to Script"))
          )
        )
      ),
      VStretch(),
      Frame(
        # Frame label - keep it short!
        _("Value and Action for Space Is Running Low"),
        HBox(
          # InputField label - space on disk is running low if the entered value is reached
          HWeight(
            1,
            InputField(Id("admin_space_left"), _("&Admin Space Left (MB) "))
          ),
          HSpacing(2.0),
          HWeight(
            1,
            ComboBox(
              Id("admin_space_left_action"),
              Opt(:notify),
              # ComboBox label - select an action which is performed if space on disk is running low
              _("Ac&tion"),
              @actions_list
            )
          ),
          HSpacing(1.0),
          # InputField label - enter the path to a script (which will be executed)
          HWeight(
            1,
            InputField(
              Id("admin_space_left_action_exec"),
              _("Path to Script")
            )
          )
        )
      ),
      VStretch(),
      InputField(Id("action_mail_acct"), _("Action Mail Account")),
      VStretch(),
      Frame(
        # Frame label - keep it short!
        _("Action on Error or Disk Full"),
        VBox(
          HBox(
            HWeight(
              1,
              ComboBox(
                Id("disk_full_action"),
                Opt(:notify),
                # ComboBox label - select an action which is performed if disk is full
                _("Disk &Full Action"),
                @error_actions_list
              )
            ),
            HSpacing(2.0),
            # InputField label - enter the path to a script (which will be executed)
            HWeight(
              1,
              InputField(Id("disk_full_action_exec"), _("Path to Script"))
            )
          ),
          HBox(
            HWeight(
              1,
              ComboBox(
                Id("disk_error_action"),
                Opt(:notify),
                # ComboBox label - select an action which is performed on error
                _("Disk &Error Action"),
                @error_actions_list
              )
            ),
            HSpacing(2.0),
            # InputField label - enter the path to a script (which will be executed)
            HWeight(
              1,
              InputField(Id("disk_error_action_exec"), _("Path to Script"))
            )
          )
        )
      ),
      VStretch()
    )
  )
end

- (Object) DispatcherDialogContent



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File '../../src/include/audit-laf/dialogs.rb', line 200

def DispatcherDialogContent
  MarginBox(
    @mbox_x,
    @mbox_y,
    VBox(
      VSpacing(2.0),
      Frame(
        # Frame label - settings of the dispatcher program
        _("Dispatcher Settings"),
        VBox(
          VSquash(
            HBox(
              # InputField label
              InputField(
                Id("dispatcher"),
                Opt(:hstretch),
                _("Dispatcher Program")
              ),
              HSpacing(2.0),
              VBox(
                VSpacing(),
                # PushButton label
                Bottom(PushButton(Id("select_disp"), _("Select Fi&le")))
              )
            )
          ),
          # ComboBox label - communication between the audit daemon and the dispatcher program
          Left(
            ComboBox(
              Id("disp_qos"),
              _("C&ommunication"),
              [
                Item(Id("lossy"), "lossy", true),
                Item(Id("lossless"), "lossless")
              ]
            )
          )
        )
      ),
      VStretch()
    )
  )
end

- (Object) initialize_audit_laf_dialogs(include_target)



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File '../../src/include/audit-laf/dialogs.rb', line 29

def initialize_audit_laf_dialogs(include_target)
  textdomain "audit-laf"

  Yast.import "Label"
  Yast.import "Wizard"
  Yast.import "AuditLaf"

  Yast.include include_target, "audit-laf/helps.rb"

  @mbox_x = 1
  @mbox_y = Convert.convert(0.5, :from => "float", :to => "integer")

  @actions_list = [
    Item(Id("IGNORE"), "IGNORE"),
    Item(Id("SYSLOG"), "SYSLOG", true),
    Item(Id("SUSPEND"), "SUSPEND"),
    Item(Id("SINGLE"), "SINGLE"),
    Item(Id("HALT"), "HALT"),
    Item(Id("EXEC"), "EXEC"),
    Item(Id("EMAIL"), "EMAIL")
  ]

  @error_actions_list = [
    Item(Id("IGNORE"), "IGNORE"),
    Item(Id("SYSLOG"), "SYSLOG", true),
    Item(Id("SUSPEND"), "SUSPEND"),
    Item(Id("SINGLE"), "SINGLE"),
    Item(Id("HALT"), "HALT"),
    Item(Id("EXEC"), "EXEC")
  ]
end

- (Object) LogfileSettingsDialogContent



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File '../../src/include/audit-laf/dialogs.rb', line 61

def LogfileSettingsDialogContent
  MarginBox(
    @mbox_x,
    @mbox_y,
    VBox(
      VStretch(),
      Frame(
        # Frame label
        _("General Settings"),
        VBox(
          VSquash(
            HBox(
              # InputField label
              InputField(Id("log_file"), Opt(:hstretch), _("&Log File")),
              HSpacing(2.0),
              VBox(
                VSpacing(),
                # PushButton label
                Bottom(PushButton(Id("select_file"), _("Select Fi&le")))
              )
            )
          ),
          VBox(
            # ComboBox label - select format of logging
            HBox(
              HWeight(
                1,
                ComboBox(
                  Id("log_format"),
                  _("&Format"),
                  [Item(Id("RAW"), "RAW", true), Item(Id("NOLOG"), "NOLOG")]
                )
              ),
              HSpacing(2.0),
              HWeight(1, Empty())
            ),
            HBox(
              # ComboBox label - select how to flush data on disk
              HWeight(
                1,
                ComboBox(
                  Id("flush"),
                  _("Fl&ush"),
                  [
                    Item(Id("NONE"), "NONE"),
                    Item(Id("INCREMENTAL"), "INCREMENTAL", true),
                    Item(Id("DATA"), "DATA"),
                    Item(Id("SYNC"), "SYNC")
                  ]
                )
              ),
              HSpacing(2.0),
              # InputField label - enter how many records to write before flush data to disk
              HWeight(
                1,
                IntField(
                  Id("freq"),
                  Opt(:hstretch),
                  _("Fre&quency (Number of Records)"),
                  0,
                  10000,
                  20
                )
              )
            )
          )
        )
      ),
      VStretch(),
      Frame(
        # Frame label - data regarding size of log file and action to perform
        _("Size and Action"),
        HBox(
          # InputField label
          HWeight(
            1,
            InputField(Id("max_log_file"), _("Ma&x File Size (MB)"))
          ),
          HSpacing(2.0),
          # ComboBox label
          HWeight(
            1,
            ComboBox(
              Id("max_log_file_action"),
              _("M&aximum File Size Action"),
              [
                Item(Id("IGNORE"), "IGNORE"),
                Item(Id("SYSLOG"), "SYSLOG", true),
                Item(Id("SUSPEND"), "SUSPEND"),
                Item(Id("ROTATE"), "ROTATE"),
                Item(Id("KEEP_LOGS"), "KEEP_LOGS")
              ]
            )
          ),
          HSpacing(2.0),
          # InputField label
          HWeight(
            1,
            IntField(
              Id("num_logs"),
              Opt(:hstretch),
              _("&Number of Log Files"),
              0,
              99,
              4
            )
          )
        )
      ),
      VStretch(),
      Frame(
        # Frame label - data regarding how to write computer names to the log file
        _("Computer Names"),
        HBox(
          # ComboBox label
          HWeight(
            1,
            ComboBox(
              Id("name_format"),
              Opt(:notify),
              _("&Computer Name Format"),
              [
                Item(Id("NONE"), "NONE"),
                Item(Id("HOSTNAME"), "HOSTNAME", true),
                Item(Id("FQD"), "FQD"),
                Item(Id("USER"), "USER")
              ]
            )
          ),
          HSpacing(2.0),
          # InputField label
          HWeight(1, InputField(Id("name"), _("User Defined Name")))
        )
      ),
      VStretch()
    )
  )
end

- (Object) RulesDialogContent



360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# File '../../src/include/audit-laf/dialogs.rb', line 360

def RulesDialogContent
  MarginBox(
    @mbox_x,
    @mbox_y,
    VBox(
      VSpacing(0.2),
      VWeight(
        20,
        VBox(
          # label of a combo box with the possibilitiy to enable/disable auditing or lock the rules
          Left(
            ComboBox(
              Id("audit_enabled"),
              Opt(:notify),
              _("&Set Enabled Flag"),
              # combo box item
              [
                Item(Id("enabled"), _("Auditing enabled"), true),
                # combo box item
                Item(Id("disabled"), _("Auditing disabled")),
                # combo box item
                Item(Id("locked"), _("Rules are locked (until next boot)"))
              ]
            )
          ),
          VStretch()
        )
      ),
      VSpacing(0.2),
      VWeight(
        90,
        VBox(
          # Label - describes what can be done in the editor
          Left(Label(_("Edit the rules for the audit subsystem here:"))),
          MultiLineEdit(Id("rules"), Opt(:vstretch), "&audit.rules")
        )
      ),
      VWeight(
        10,
        # label of a push button (please keep it short)
        HBox(
          PushButton(Id("test"), _("&Check Syntax")),
          HSpacing(2.0),
          # label of push button  (please keep it short)
          PushButton(Id("restore"), _("&Restore 'audit.rules'")),
          HSpacing(2.0),
          # label of push button  (please keep it short)
          PushButton(Id("reset"), _("R&estore and Reset")),
          HSpacing(2.0),
          # label of a push button
          PushButton(Id("load"), _("&Load "))
        )
      )
    )
  )
end