File tree Expand file tree Collapse file tree 3 files changed +8286
-1
lines changed
src/onecfg/share/migrators Expand file tree Collapse file tree 3 files changed +8286
-1
lines changed Original file line number Diff line number Diff line change @@ -2272,7 +2272,9 @@ ONECFG_SHARE_MIGRATORS_FILES="src/onecfg/share/migrators/5.4.0_to_5.4.1.yaml \
22722272 src/onecfg/share/migrators/6.10.0_to_6.10.2.rb \
22732273 src/onecfg/share/migrators/6.10.0_to_6.10.2.yaml \
22742274 src/onecfg/share/migrators/6.10.2_to_7.0.0.rb \
2275- src/onecfg/share/migrators/6.10.2_to_7.0.0.yaml"
2275+ src/onecfg/share/migrators/6.10.2_to_7.0.0.yaml \
2276+ src/onecfg/share/migrators/7.0.0_to_7.1.80.rb \
2277+ src/onecfg/share/migrators/7.0.0_to_7.1.80.yaml"
22762278
22772279# -----------------------------------------------------------------------------
22782280# OneHem files
Original file line number Diff line number Diff line change 1+ # -------------------------------------------------------------------------- #
2+ # Copyright 2019-2022, OpenNebula Systems S.L. #
3+ # #
4+ # Licensed under the OpenNebula Software License #
5+ # (the "License"); you may not use this file except in compliance with #
6+ # the License. You may obtain a copy of the License as part of the software #
7+ # distribution. #
8+ # #
9+ # See https://github.com/OpenNebula/one/blob/master/LICENSE.onsla #
10+ # (or copy bundled with OpenNebula in /usr/share/doc/one/). #
11+ # #
12+ # Unless agreed to in writing, software distributed under the License is #
13+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY #
14+ # KIND, either express or implied. See the License for the specific language #
15+ # governing permissions and limitations under the License. #
16+ # -------------------------------------------------------------------------- #
17+
18+ # frozen_string_literal: true
19+
20+ # Migrator
21+ module Migrator
22+
23+ # Preupgrade steps
24+ def pre_up
25+ #TBD
26+ end
27+
28+
29+ # Upgrade steps
30+ def up ;
31+ #TBD
32+ end
33+
34+ end
You can’t perform that action at this time.
0 commit comments