Skip to content

Commit b600de1

Browse files
committed
M #-: Refresh onecfg migrators
Bootstrap onecfg migrators for next release
1 parent ef50b8f commit b600de1

File tree

3 files changed

+8286
-1
lines changed

3 files changed

+8286
-1
lines changed

install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)