summaryrefslogtreecommitdiffstats
path: root/testsuites/rubbos/puppet_manifests/modules/rubbos_client/manifests/rubbos_client_off.pp
blob: aeb1f12f699c05a5c1f6c913fca28ab0b2402842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
60
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
#############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################


class rubbos_client::rubbos_client_off {

  include params::rubbos_params

  # Declare some variables
  $rubbos_home          = $params::rubbos_params::rubbos_home

  # build.properties
  file {'${rubbos_home}/build.properties':
        ensure          => absent,
        path            => "${rubbos_home}/build.properties",
        show_diff       => false,
        backup          => false,
  }

  # config.mk
  file {'${rubbos_home}/config.mk':
        ensure          => absent,
        path            => "${rubbos_home}/config.mk",
        show_diff       => false,
        backup          => false,
  }

  # Makefile
  file {'${rubbos_home}/Makefile':
        ensure          => absent,
        path            => "${rubbos_home}/Makefile",
        show_diff       => false,
        backup          => false,
  }

  # Client/rubbos.properties.template
  file {'${rubbos_home}/Client/rubbos.properties.template':
        ensure          => absent,
        path            => "${rubbos_home}/Client/rubbos.properties.template",
        show_diff       => false,
        backup          => false,
  }

  # bench/run_emulator.sh
  file {'${rubbos_home}/bench/run_emulator.sh':
        ensure          => absent,
        path            => "${rubbos_home}/bench/run_emulator.sh",
        show_diff       => false,
        backup          => false,
  }

  file {'${rubbos_home}/Client.tar.gz':
      ensure            => absent,
      path              => "${rubbos_home}/Client.tar.gz",
      backup            => false,
  }

  file {'${rubbos_home}/Client':
        ensure          => absent,
        path            => "${rubbos_home}/Client",
        force           => true,
        recurse         => true,
        show_diff       => false,
        backup          => false,
  }

  file {'${rubbos_home}/workload.tar.gz':
        ensure          => absent,
        path            => "${rubbos_home}/workload.tar.gz",
        backup          => false,
  }

  file {'${rubbos_home}/workload':
        ensure          => absent,
        path            => "${rubbos_home}/workload",
        force           => true,
        recurse         => true,
        show_diff       => false,
        backup          => false,
  }

  file {'${rubbos_home}/database.tar.gz':
        ensure          => absent,
        path            => "${rubbos_home}/database.tar.gz",
        backup          => false,
  }

  file {'${rubbos_home}/database':
        ensure          => absent,
        path            => "${rubbos_home}/database",
        force           => true,
        recurse         => true,
        show_diff       => false,
        backup          => false,
  }

}