File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Fips/MD5:
31
31
- ' config/software/gitlab-pg-ctl.rb'
32
32
- ' config/software/gitlab-psql.rb'
33
33
- ' config/software/gitlab-redis-cli.rb'
34
+ - ' config/software/gitlab-backup-cli.rb'
34
35
- ' files/gitlab-cookbooks/gitlab/libraries/helpers/base_pg_helper.rb'
35
36
- ' files/gitlab-cookbooks/gitlab/libraries/rails_migration_helper.rb'
36
37
- ' files/gitlab-ctl-commands/lib/postgresql/password_hash.rb'
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
#
17
+
18
+ require 'digest'
19
+
17
20
name 'gitlab-backup-cli'
18
21
19
22
license 'Apache-2.0'
20
23
license_file File . expand_path ( 'LICENSE' , Omnibus ::Config . project_root )
21
24
22
25
skip_transitive_dependency_licensing true
23
26
27
+ # This 'software' is self-contained in this file. Use the file contents
28
+ # to generate a version string.
29
+ default_version Digest ::MD5 . file ( __FILE__ ) . hexdigest
30
+
24
31
build do
25
32
mkdir "#{ install_dir } /bin/"
26
33
# Create a wrapper for the gitlab-backup-cli tool
You can’t perform that action at this time.
0 commit comments