~tieto/+junk/cfengine3

« back to all changes in this revision

Viewing changes to tests/units/.svn/text-base/unit_getgid.cf.svn-base

  • Committer: Bazaar Package Importer
  • Author(s): Antonio Radici
  • Date: 2010-04-30 08:11:20 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100430081120-qjlb3etnasi7mr0a
Tags: 3.0.4+dfsg-1
 * debian/watch: modified to catch the newest versions
 * debian/control:
    + removed DMUA
    + bumped Standards-Version to 3.8.4 (no changed needed)
 * debian/patches:
    + all patches refreshed
    + rename-doesnt-fail: removed, it is incorporated upstream
    + added some more typos to patches/fix-error-typos
* Switch to dpkg-source 3.0 (quilt) format
    + debian/control: removed quilt from B-D
    + debian/rules: removed patch/unpatch and quilt include
    + debian/README.source removed
* debian/cfengin3.lintian-overrides:
    + overridden a spelling error (it is not)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  Copyright (C) Cfengine AS
 
2
 
 
3
#  This file is part of Cfengine 3 - written and maintained by Cfengine AS.
 
4
 
 
5
#  This program is free software; you can redistribute it and/or modify it
 
6
#  under the terms of the GNU General Public License as published by the
 
7
#  Free Software Foundation; version 3.
 
8
 
 
9
#  This program is distributed in the hope that it will be useful,
 
10
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
#  GNU General Public License for more details.
 
13
 
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
 
17
 
 
18
# To the extent this program is licensed as part of the Enterprise
 
19
# versions of Cfengine, the applicable Commerical Open Source License
 
20
# (COSL) may apply to this file if you as a licensee so wish it. See
 
21
# included file COSL.txt.
 
22
 
 
23
 
 
24
body common control
 
25
 
 
26
{
 
27
bundlesequence  => { "example" };
 
28
}
 
29
 
 
30
###########################################################
 
31
 
 
32
bundle agent example
 
33
 
 
34
{     
 
35
vars:
 
36
 
 
37
  "gid" int => getgid("users");
 
38
 
 
39
reports:
 
40
 
 
41
  Yr2008::
 
42
 
 
43
    "Users gid is $(gid)";
 
44
 
 
45
}
 
46