~ubuntu-branches/ubuntu/hardy/apparmor/hardy-proposed

« back to all changes in this revision

Viewing changes to management/yastui/src/scrconf/reports_confined.scr

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2007-09-11 10:44:56 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070911104456-2a2vwe4wb0hxbc53
Tags: 2.1+961-0ubuntu1
* New upstream version.
  * Support resolvconf. Fix LP: #132468.
* Move package maintainance to bzr:
  * Apply all patches directly into the tree with dpatch apply-all.
  * debian/patches/: remove all patches as they are applied inline now.
  * debian/control, debian/control.modules.in: remove dpatch from
    Build Depends.
  * debian/rules:
    * remove dpatch include.
    * remove patch and unpatch dependencies
* debian/control:
  * Rename libapparmor-dev to libapparmor1-dev.
    Add Provides: and Conflict: tags.
  * Remove universe component in Section tag.
  * Remove apparmor-utils depends on bsdutils.
  * Update apparmor-modules Recommends to apparmor-modules-2.1.
* utils/:
  * Add audit man page.
* Fix mod_appamor library: remove rpath info.
  * debian/rules: remove rpath info.
  * debian/control: add chrpath as a build dependency.
* Remove apparmor-modules-source package:
  * debian/conrol: remove apparmor-modules-source package.
  * debian/apparmor.postinst, debian/apparmor.preinst,
    debian/apparmor.prerm: remove error_handler function.
  * debian/rules: remove error_handler option from dh_installinit.
  * debian/apparmor-modules-_KVERS_.postinst.modules.in,
    debian/control.modules.in: remove control and postinst files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * File:
 
3
 *   target.scr
 
4
 * Summary:
 
5
 *   SCR Agent for interfacing with (shell) commands of the target system
 
6
 *   and reading/writing files.
 
7
 * Access:
 
8
 *   read/write/execute
 
9
 * Authors:
 
10
 *   Unknown <yast2-hacker@suse.de>
 
11
 * See:
 
12
 *   libscr
 
13
 *   man bash
 
14
 *   source/y2a_system/doc/systemagent.txt
 
15
 * Example:
 
16
 *   Execute (.target.bash, "uname -a")
 
17
 *   (0)
 
18
 **
 
19
 *   Execute (.target.bash_output, "uname -a")
 
20
 *   (
 
21
 *     $[
 
22
 *       "exit":0,
 
23
 *       "stderr":"",
 
24
 *       "stdout":"Linux steiner 2.2.18 #1 Fri Jan 19 22:10:35 GMT 2001 i686 unknown\n"
 
25
 *     ]
 
26
 *   )
 
27
 **
 
28
 *   Read(.target.dir, "/")
 
29
 *   (["usr", "tmp", "floppy", "var", "root", "opt", "home", "etc", ...])
 
30
 **
 
31
 *   Write(.target.string, "/tmp/target.1", "Some Test\n")
 
32
 *   (true)
 
33
 **
 
34
 *   Read(.target.string, "/tmp/target.1")
 
35
 *   ("Some Test\n")
 
36
 *
 
37
 * $Id: logparse.scr 3715 2005-01-19 09:06:05Z sarnold $
 
38
 *
 
39
 * <p>The target-agent is used for various actions on the target system.</p>
 
40
 *
 
41
 * <p>The Execute Interface can be used to execute some predefined commands
 
42
 * like mount, umount, mkdir, remove, modprobe ... or arbitrary commands
 
43
 * using the bash, bash_output or bash_background.</p>
 
44
 *
 
45
 * <p>The Read and Write interface can be used to access the target
 
46
 * filesystem, most prominent reading or writing whole files using the
 
47
 * "string" subpath.</p>
 
48
 *
 
49
 * <p>For more information see the agent's own documentation.</p>
 
50
 */
 
51
.reports_confined
 
52
 
 
53
`ag_reports_confined ()