fpm-aeppert 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELIST +661 -0
- data/CONTRIBUTORS +26 -0
- data/LICENSE +21 -0
- data/bin/fpm +8 -0
- data/lib/fpm.rb +20 -0
- data/lib/fpm/command.rb +648 -0
- data/lib/fpm/errors.rb +4 -0
- data/lib/fpm/namespace.rb +4 -0
- data/lib/fpm/package.rb +539 -0
- data/lib/fpm/package/apk.rb +510 -0
- data/lib/fpm/package/cpan.rb +405 -0
- data/lib/fpm/package/deb.rb +935 -0
- data/lib/fpm/package/dir.rb +221 -0
- data/lib/fpm/package/empty.rb +13 -0
- data/lib/fpm/package/freebsd.rb +147 -0
- data/lib/fpm/package/gem.rb +243 -0
- data/lib/fpm/package/npm.rb +120 -0
- data/lib/fpm/package/osxpkg.rb +165 -0
- data/lib/fpm/package/p5p.rb +124 -0
- data/lib/fpm/package/pacman.rb +403 -0
- data/lib/fpm/package/pear.rb +117 -0
- data/lib/fpm/package/pkgin.rb +35 -0
- data/lib/fpm/package/pleaserun.rb +63 -0
- data/lib/fpm/package/puppet.rb +120 -0
- data/lib/fpm/package/pyfpm/__init__.py +1 -0
- data/lib/fpm/package/pyfpm/get_metadata.py +104 -0
- data/lib/fpm/package/python.rb +318 -0
- data/lib/fpm/package/rpm.rb +593 -0
- data/lib/fpm/package/sh.rb +69 -0
- data/lib/fpm/package/solaris.rb +95 -0
- data/lib/fpm/package/tar.rb +86 -0
- data/lib/fpm/package/virtualenv.rb +164 -0
- data/lib/fpm/package/zip.rb +63 -0
- data/lib/fpm/rake_task.rb +60 -0
- data/lib/fpm/util.rb +358 -0
- data/lib/fpm/util/tar_writer.rb +80 -0
- data/lib/fpm/version.rb +3 -0
- data/templates/deb.erb +52 -0
- data/templates/deb/changelog.erb +5 -0
- data/templates/deb/ldconfig.sh.erb +13 -0
- data/templates/deb/postinst_upgrade.sh.erb +62 -0
- data/templates/deb/postrm_upgrade.sh.erb +46 -0
- data/templates/deb/preinst_upgrade.sh.erb +41 -0
- data/templates/deb/prerm_upgrade.sh.erb +39 -0
- data/templates/osxpkg.erb +11 -0
- data/templates/p5p_metadata.erb +12 -0
- data/templates/pacman.erb +47 -0
- data/templates/pacman/INSTALL.erb +41 -0
- data/templates/pleaserun/generate-cleanup.sh +17 -0
- data/templates/pleaserun/install-path.sh +17 -0
- data/templates/pleaserun/install.sh +117 -0
- data/templates/pleaserun/scripts/after-install.sh +4 -0
- data/templates/pleaserun/scripts/before-remove.sh +12 -0
- data/templates/puppet/package.pp.erb +34 -0
- data/templates/puppet/package/remove.pp.erb +13 -0
- data/templates/rpm.erb +260 -0
- data/templates/rpm/filesystem_list +14514 -0
- data/templates/sh.erb +369 -0
- data/templates/solaris.erb +15 -0
- metadata +322 -0
data/lib/fpm/version.rb
ADDED
data/templates/deb.erb
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
Package: <%= name %>
|
2
|
+
Version: <%= "#{epoch}:" if epoch %><%= version %><%= "-" + iteration.to_s if iteration %>
|
3
|
+
License: <%= license %>
|
4
|
+
<% if !vendor.nil? and !vendor.empty? -%>
|
5
|
+
Vendor: <%= vendor %>
|
6
|
+
<% end -%>
|
7
|
+
Architecture: <%= architecture %>
|
8
|
+
Maintainer: <%= maintainer %>
|
9
|
+
Installed-Size: <%= attributes[:deb_installed_size] %>
|
10
|
+
<% if !dependencies.empty? and !attributes[:no_depends?] -%>
|
11
|
+
Depends: <%= dependencies.collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
12
|
+
<% end -%>
|
13
|
+
<% if !conflicts.empty? -%>
|
14
|
+
Conflicts: <%= conflicts.collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
15
|
+
<% end -%>
|
16
|
+
<% if attributes[:deb_breaks] and !attributes[:deb_breaks].empty? -%>
|
17
|
+
Breaks: <%= attributes[:deb_breaks].collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
18
|
+
<% end -%>
|
19
|
+
<% if attributes[:deb_pre_depends] and !attributes[:deb_pre_depends].empty? -%>
|
20
|
+
Pre-Depends: <%= attributes[:deb_pre_depends].collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
21
|
+
<% end -%>
|
22
|
+
<% if attributes[:deb_build_depends] and !attributes[:deb_build_depends].empty? -%>
|
23
|
+
Build-Depends: <%= attributes[:deb_build_depends].collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
24
|
+
<% end -%>
|
25
|
+
<% if !provides.empty? -%>
|
26
|
+
<%# Turn each provides from 'foo = 123' to simply 'foo' because Debian :\ -%>
|
27
|
+
<%# http://www.debian.org/doc/debian-policy/ch-relationships.html -%>
|
28
|
+
Provides: <%= provides.map {|p| p.split(" ").first}.join ", " %>
|
29
|
+
<% end -%>
|
30
|
+
<% if !replaces.empty? -%>
|
31
|
+
Replaces: <%= replaces.join(", ") %>
|
32
|
+
<% end -%>
|
33
|
+
<% if attributes[:deb_recommends] and !attributes[:deb_recommends].empty? -%>
|
34
|
+
Recommends: <%= attributes[:deb_recommends].collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
35
|
+
<% end -%>
|
36
|
+
<% if attributes[:deb_suggests] and !attributes[:deb_suggests].empty? -%>
|
37
|
+
Suggests: <%= attributes[:deb_suggests].collect { |d| fix_dependency(d) }.flatten.join(", ") %>
|
38
|
+
<% end -%>
|
39
|
+
Section: <%= category %>
|
40
|
+
Priority: <%= attributes[:deb_priority] %>
|
41
|
+
Homepage: <%= url or "http://nourlgiven.example.com/" %>
|
42
|
+
<% lines = (description or "no description given").split("\n") -%>
|
43
|
+
<% firstline, *remainder = lines -%>
|
44
|
+
Description: <%= firstline %>
|
45
|
+
<% if remainder.any? -%>
|
46
|
+
<%= remainder.collect { |l| l =~ /^ *$/ ? " ." : " #{l}" }.join("\n") %>
|
47
|
+
<% end -%>
|
48
|
+
<% if attributes[:deb_field_given?] -%>
|
49
|
+
<% attributes[:deb_field].each do |field, value| -%>
|
50
|
+
<%= field %>: <%= value %>
|
51
|
+
<% end -%>
|
52
|
+
<% end -%>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# This script is automatically added by fpm when you specify
|
3
|
+
# conditions that usually require running ldconfig upon
|
4
|
+
# package installation and removal.
|
5
|
+
#
|
6
|
+
# For example, if you set '--deb-shlibs' in creating your package,
|
7
|
+
# fpm will use this script if you don't provide your own --after-install or
|
8
|
+
# --after-remove
|
9
|
+
set -e
|
10
|
+
|
11
|
+
case $1 in
|
12
|
+
configure|remove) ldconfig ;;
|
13
|
+
esac
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
after_upgrade() {
|
3
|
+
<%# Making sure that at least one command is in the function -%>
|
4
|
+
<%# avoids a lot of potential errors, including the case that -%>
|
5
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
6
|
+
:
|
7
|
+
<% if script?(:after_upgrade) -%>
|
8
|
+
<%= script(:after_upgrade) %>
|
9
|
+
<% end -%>
|
10
|
+
|
11
|
+
<% if attributes[:deb_systemd] -%>
|
12
|
+
systemctl --system daemon-reload >/dev/null || true
|
13
|
+
if ! systemctl is-enabled <%= attributes[:deb_systemd] %> >/dev/null
|
14
|
+
then
|
15
|
+
systemctl enable <%= attributes[:deb_systemd] %> >/dev/null || true
|
16
|
+
systemctl start <%= attributes[:deb_systemd] %> >/dev/null || true
|
17
|
+
<% if attributes[:deb_systemd_restart_after_upgrade?] -%>
|
18
|
+
else
|
19
|
+
systemctl restart <%= attributes[:deb_systemd] %> >/dev/null || true
|
20
|
+
<% end -%>
|
21
|
+
fi
|
22
|
+
<% end -%>
|
23
|
+
}
|
24
|
+
|
25
|
+
after_install() {
|
26
|
+
<%# Making sure that at least one command is in the function -%>
|
27
|
+
<%# avoids a lot of potential errors, including the case that -%>
|
28
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
29
|
+
:
|
30
|
+
<% if script?(:after_install) -%>
|
31
|
+
<%= script(:after_install) %>
|
32
|
+
<% end -%>
|
33
|
+
|
34
|
+
<% if attributes[:deb_systemd] -%>
|
35
|
+
systemctl --system daemon-reload >/dev/null || true
|
36
|
+
systemctl enable <%= attributes[:deb_systemd] %> >/dev/null || true
|
37
|
+
systemctl start <%= attributes[:deb_systemd] %> >/dev/null || true
|
38
|
+
<% end -%>
|
39
|
+
}
|
40
|
+
|
41
|
+
if [ "${1}" = "configure" -a -z "${2}" ] || \
|
42
|
+
[ "${1}" = "abort-remove" ]
|
43
|
+
then
|
44
|
+
# "after install" here
|
45
|
+
# "abort-remove" happens when the pre-removal script failed.
|
46
|
+
# In that case, this script, which should be idemptoent, is run
|
47
|
+
# to ensure a clean roll-back of the removal.
|
48
|
+
after_install
|
49
|
+
elif [ "${1}" = "configure" -a -n "${2}" ]
|
50
|
+
then
|
51
|
+
upgradeFromVersion="${2}"
|
52
|
+
# "after upgrade" here
|
53
|
+
# NOTE: This slot is also used when deb packages are removed,
|
54
|
+
# but their config files aren't, but a newer version of the
|
55
|
+
# package is installed later, called "Config-Files" state.
|
56
|
+
# basically, that still looks a _lot_ like an upgrade to me.
|
57
|
+
after_upgrade "${2}"
|
58
|
+
elif echo "${1}" | grep -E -q "(abort|fail)"
|
59
|
+
then
|
60
|
+
echo "Failed to install before the post-installation script was run." >&2
|
61
|
+
exit 1
|
62
|
+
fi
|
@@ -0,0 +1,46 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
after_remove() {
|
3
|
+
<%# Making sure that at least one command is in the function -%>
|
4
|
+
<%# avoids a lot of potential errors, including the case that -%>
|
5
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
6
|
+
:
|
7
|
+
<% if script?(:after_remove) -%>
|
8
|
+
<%= script(:after_remove) %>
|
9
|
+
<% end -%>
|
10
|
+
}
|
11
|
+
|
12
|
+
dummy() {
|
13
|
+
:
|
14
|
+
}
|
15
|
+
|
16
|
+
|
17
|
+
if [ "${1}" = "remove" -o "${1}" = "abort-install" ]
|
18
|
+
then
|
19
|
+
# "after remove" goes here
|
20
|
+
# "abort-install" happens when the pre-installation script failed.
|
21
|
+
# In that case, this script, which should be idemptoent, is run
|
22
|
+
# to ensure a clean roll-back of the installation.
|
23
|
+
after_remove
|
24
|
+
elif [ "${1}" = "purge" -a -z "${2}" ]
|
25
|
+
then
|
26
|
+
# like "on remove", but executes after dpkg deletes config files
|
27
|
+
# 'apt-get purge' runs 'on remove' section, then this section.
|
28
|
+
# Maybe we ignore this; it seems really fine-grained.
|
29
|
+
# There is no equivalent in RPM or ARCH. A debian-specific argument
|
30
|
+
# might perhaps be used here, but most people
|
31
|
+
# probably don't need it.
|
32
|
+
dummy
|
33
|
+
elif [ "${1}" = "upgrade" ]
|
34
|
+
then
|
35
|
+
# This represents the case where the old package's postrm is called after
|
36
|
+
# the 'preinst' script is called.
|
37
|
+
# We should ignore this and just use 'preinst upgrade' and
|
38
|
+
# 'postinst configure'. The newly installed package should do the
|
39
|
+
# upgrade, not the uninstalled one, since it can't anticipate what new
|
40
|
+
# things it will have to do to upgrade for the new version.
|
41
|
+
dummy
|
42
|
+
elif echo "${1}" | grep -E -q '(fail|abort)'
|
43
|
+
then
|
44
|
+
echo "Failed to install before the post-removal script was run." >&2
|
45
|
+
exit 1
|
46
|
+
fi
|
@@ -0,0 +1,41 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
before_upgrade() {
|
3
|
+
<%# Making sure that at least one command is in the function -%>
|
4
|
+
<%# avoids a lot of potential errors, including the case that -%>
|
5
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
6
|
+
:
|
7
|
+
<% if script?(:before_upgrade) -%>
|
8
|
+
<%= script(:before_upgrade) %>
|
9
|
+
<% end -%>
|
10
|
+
}
|
11
|
+
|
12
|
+
before_install() {
|
13
|
+
<%# Making sure that at least one command is in the function -%>
|
14
|
+
<%# avoids a lot of potential errors, including the case that -%>
|
15
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
16
|
+
:
|
17
|
+
<% if script?(:before_install) -%>
|
18
|
+
<%= script(:before_install) %>
|
19
|
+
<% end -%>
|
20
|
+
}
|
21
|
+
|
22
|
+
if [ "${1}" = "install" -a -z "${2}" ]
|
23
|
+
then
|
24
|
+
before_install
|
25
|
+
elif [ "${1}" = "upgrade" -a -n "${2}" ]
|
26
|
+
then
|
27
|
+
upgradeFromVersion="${2}"
|
28
|
+
before_upgrade "${upgradeFromVersion}"
|
29
|
+
elif [ "${1}" = "install" -a -n "${2}" ]
|
30
|
+
then
|
31
|
+
upgradeFromVersion="${2}"
|
32
|
+
# Executed when a package is removed but its config files aren't,
|
33
|
+
# and a new version is installed.
|
34
|
+
# Looks a _lot_ like an upgrade case, I say we just execute the
|
35
|
+
# same "before upgrade" script as in the previous case
|
36
|
+
before_upgrade "${upgradeFromVersion}"
|
37
|
+
elif echo "${1}" | grep -E -q '(fail|abort)'
|
38
|
+
then
|
39
|
+
echo "Failed to install before the pre-installation script was run." >&2
|
40
|
+
exit 1
|
41
|
+
fi
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
before_remove() {
|
3
|
+
<%# Making sure that at least one command is in the function -%>
|
4
|
+
<%# avoids a lot of potential errors, including the case that -%>
|
5
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
6
|
+
:
|
7
|
+
<% if script?(:before_remove) -%>
|
8
|
+
<%= script(:before_remove) %>
|
9
|
+
<% end -%>
|
10
|
+
|
11
|
+
<%# Removing the systemd service-%>
|
12
|
+
<% if attributes[:deb_systemd] -%>
|
13
|
+
systemctl stop <%= attributes[:deb_systemd] %> >/dev/null || true
|
14
|
+
systemctl disable <%= attributes[:deb_systemd] %> >/dev/null || true
|
15
|
+
systemctl --system daemon-reload >/dev/null || true
|
16
|
+
<% end -%>
|
17
|
+
}
|
18
|
+
|
19
|
+
dummy() {
|
20
|
+
:
|
21
|
+
}
|
22
|
+
|
23
|
+
if [ "${1}" = "remove" -a -z "${2}" ]
|
24
|
+
then
|
25
|
+
# "before remove" goes here
|
26
|
+
before_remove
|
27
|
+
elif [ "${1}" = "upgrade" ]
|
28
|
+
then
|
29
|
+
# Executed before the old version is removed
|
30
|
+
# upon upgrade.
|
31
|
+
# We should generally not do anything here. The newly installed package
|
32
|
+
# should do the upgrade, not the uninstalled one, since it can't anticipate
|
33
|
+
# what new things it will have to do to upgrade for the new version.
|
34
|
+
dummy
|
35
|
+
elif echo "${1}" | grep -E -q "(fail|abort)"
|
36
|
+
then
|
37
|
+
echo "Failed to install before the pre-removal script was run." >&2
|
38
|
+
exit 1
|
39
|
+
fi
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<pkg-info
|
2
|
+
<% if !attributes[:osxpkg_postinstall_action].nil? -%>postinstall-action="<%= attributes[:osxpkg_postinstall_action] %>"<% end -%>
|
3
|
+
>
|
4
|
+
<% if !attributes[:osxpkg_dont_obsolete].nil? -%>
|
5
|
+
<dont-obsolete>
|
6
|
+
<% attributes[:osxpkg_dont_obsolete].each do |filepath| -%>
|
7
|
+
<file path="<%= filepath %>"/>
|
8
|
+
<% end -%>
|
9
|
+
</dont-obsolete>
|
10
|
+
<% end -%>
|
11
|
+
</pkg-info>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
set name=pkg.fmri value="<%=@name%>@<%=@version%>"
|
2
|
+
set name=pkg.summary value="<%=@description%>"
|
3
|
+
set name=pkg.human-version value="<%=@version%>"
|
4
|
+
set name=pkg.description value="<%=@description%>"
|
5
|
+
set name=info.classification value="org.opensolaris.category.2008:<%=@category%>"
|
6
|
+
set name=variant.opensolaris.zone <%= attributes[:p5p_zonetype] %>
|
7
|
+
set name=variant.arch value=<%=@architecture%>
|
8
|
+
<transform file dir -> set owner <%= attributes[:p5p_user] %>>
|
9
|
+
<transform file dir -> set group <%= attributes[:p5p_group] %>>
|
10
|
+
<transform dir path=opt$->drop>
|
11
|
+
<transform dir path=etc$->drop>
|
12
|
+
<transform dir path=usr(?:|/bin)$->drop>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# Generated by fpm
|
2
|
+
# Hello packaging friend!
|
3
|
+
#
|
4
|
+
# If you find yourself using this 'fpm --edit' feature frequently, it is
|
5
|
+
# a sign that fpm is missing a feature! I welcome your feature requests!
|
6
|
+
# Please visit the following URL and ask for a feature that helps you never
|
7
|
+
# need to edit this file again! :)
|
8
|
+
# https://github.com/jordansissel/fpm/issues
|
9
|
+
# ------------------------------------------------------------------------
|
10
|
+
#
|
11
|
+
pkgname = <%= name %>
|
12
|
+
<% if !epoch.nil? -%>
|
13
|
+
pkgver = <%= epoch %>:<%= version %>-<%= iteration %>
|
14
|
+
<% else -%>
|
15
|
+
pkgver = <%= version %>-<%= iteration %>
|
16
|
+
<% end -%>
|
17
|
+
pkgdesc = <%= description %>
|
18
|
+
<% if !url.nil? and !url.empty? -%>
|
19
|
+
url = <%= url %>
|
20
|
+
<% else -%>
|
21
|
+
url = http://nourlgiven.example.com/
|
22
|
+
<% end -%>
|
23
|
+
builddate = <%= builddate %>
|
24
|
+
packager = <%= maintainer %>
|
25
|
+
size = <%= size %>
|
26
|
+
arch = <%= architecture %>
|
27
|
+
license = <%= license %>
|
28
|
+
<% replaces.each do |repl| -%>
|
29
|
+
replaces = <%= repl %>
|
30
|
+
<% end -%>
|
31
|
+
group = <%= category %>
|
32
|
+
<% conflicts.each do |confl| -%>
|
33
|
+
conflict = <%= confl %>
|
34
|
+
<% end -%>
|
35
|
+
<% provides.each do |prov| -%>
|
36
|
+
provides = <%= prov %>
|
37
|
+
<% end -%>
|
38
|
+
<% config_files.each do |conf| -%>
|
39
|
+
<% conf.gsub(/^\/+/, "") -%>
|
40
|
+
backup = <%= conf %>
|
41
|
+
<% end -%>
|
42
|
+
<% dependencies.each do |req| -%>
|
43
|
+
depend = <%= req %>
|
44
|
+
<% end -%>
|
45
|
+
<% attributes.fetch(:pacman_opt_depends, []).each do |opt| -%>
|
46
|
+
optdepend = <%= opt %>
|
47
|
+
<% end -%>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<%# In each function, a `:` is the first command. -%>
|
2
|
+
<%# This makes sure that at least one command is in the function -%>
|
3
|
+
<%# This avoids a lot of potential errors, including the case that -%>
|
4
|
+
<%# the script is non-empty, but just whitespace and/or comments -%>
|
5
|
+
<%# see issue #875 for more details -%>
|
6
|
+
<% if script?(:before_install) -%>
|
7
|
+
pre_install() {
|
8
|
+
:
|
9
|
+
<%= script(:before_install) %>
|
10
|
+
}
|
11
|
+
<% end -%>
|
12
|
+
<% if script?(:after_install) -%>
|
13
|
+
post_install() {
|
14
|
+
:
|
15
|
+
<%= script(:after_install) %>
|
16
|
+
}
|
17
|
+
<% end -%>
|
18
|
+
<% if script?(:before_upgrade) -%>
|
19
|
+
pre_upgrade() {
|
20
|
+
:
|
21
|
+
<%= script(:before_upgrade) %>
|
22
|
+
}
|
23
|
+
<% end -%>
|
24
|
+
<% if script?(:after_upgrade) -%>
|
25
|
+
post_upgrade() {
|
26
|
+
:
|
27
|
+
<%= script(:after_upgrade) %>
|
28
|
+
}
|
29
|
+
<% end -%>
|
30
|
+
<% if script?(:before_remove) -%>
|
31
|
+
pre_remove() {
|
32
|
+
:
|
33
|
+
<%= script(:before_remove) %>
|
34
|
+
}
|
35
|
+
<% end -%>
|
36
|
+
<% if script?(:after_remove) -%>
|
37
|
+
post_remove() {
|
38
|
+
:
|
39
|
+
<%= script(:after_remove) %>
|
40
|
+
}
|
41
|
+
<% end -%>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
show_cleanup_step() {
|
4
|
+
d="${1##.}"
|
5
|
+
if [ ! -z "$d" ] ; then
|
6
|
+
if [ -d "$1" -a ! -d "$d" ] ; then
|
7
|
+
echo "rmdir \"$d\""
|
8
|
+
fi
|
9
|
+
if [ -f "$1" ] ; then
|
10
|
+
echo "rm \"$d\""
|
11
|
+
fi
|
12
|
+
fi
|
13
|
+
}
|
14
|
+
|
15
|
+
for i in "$@" ; do
|
16
|
+
show_cleanup_step "$i"
|
17
|
+
done
|
@@ -0,0 +1,117 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
source="<%= attributes[:prefix] %>"
|
4
|
+
|
5
|
+
cleanup_script="$source/cleanup.sh"
|
6
|
+
|
7
|
+
silent() {
|
8
|
+
"$@" > /dev/null 2>&1
|
9
|
+
}
|
10
|
+
|
11
|
+
install_files() {
|
12
|
+
# TODO(sissel): Need to know what prefix the files exist at
|
13
|
+
platform="$1"
|
14
|
+
version="$(version_${platform})"
|
15
|
+
|
16
|
+
(
|
17
|
+
# TODO(sissel): Should I just rely on rsync for this stuff?
|
18
|
+
cd "${source}/${platform}/${version}/files/" || exit 1
|
19
|
+
|
20
|
+
# Write a cleanup script
|
21
|
+
find . -print0 | xargs -r0 -n1 "$source/generate-cleanup.sh" > "$cleanup_script"
|
22
|
+
|
23
|
+
# Actually do the installation
|
24
|
+
find . -print0 | xargs -r0 -n1 "$source/install-path.sh"
|
25
|
+
)
|
26
|
+
}
|
27
|
+
|
28
|
+
install_actions() {
|
29
|
+
# TODO(sissel): Need to know what prefix the files exist at
|
30
|
+
platform="$1"
|
31
|
+
version="$(version_${platform})"
|
32
|
+
|
33
|
+
|
34
|
+
actions="${source}/${platform}/${version}/install_actions.sh"
|
35
|
+
if [ -f "$actions" ] ; then
|
36
|
+
. "$actions"
|
37
|
+
fi
|
38
|
+
}
|
39
|
+
|
40
|
+
version_systemd() {
|
41
|
+
# Treat all systemd versions the same
|
42
|
+
echo default
|
43
|
+
}
|
44
|
+
|
45
|
+
version_launchd() {
|
46
|
+
# Treat all launchd versions the same
|
47
|
+
echo 10.9
|
48
|
+
}
|
49
|
+
|
50
|
+
version_upstart() {
|
51
|
+
# Treat all upstart versions the same
|
52
|
+
# TODO(sissel): Upstart 0.6.5 needs to be handled specially.
|
53
|
+
version="$(initctl --version | head -1 | tr -d '()' | awk '{print $NF}')"
|
54
|
+
|
55
|
+
case $version in
|
56
|
+
0.6.5) echo $version ;;
|
57
|
+
*) echo "1.5" ;; # default modern assumption
|
58
|
+
esac
|
59
|
+
}
|
60
|
+
|
61
|
+
version_sysv() {
|
62
|
+
# TODO(sissel): Once pleaserun supports multiple sysv implementations, maybe
|
63
|
+
# we inspect the OS to find out what we should target.
|
64
|
+
echo lsb-3.1
|
65
|
+
}
|
66
|
+
|
67
|
+
has_systemd() {
|
68
|
+
# Some OS vendors put systemd in ... different places ...
|
69
|
+
[ -d "/lib/systemd/system/" -o -d "/usr/lib/systemd/system" ] && silent which systemctl
|
70
|
+
}
|
71
|
+
|
72
|
+
has_upstart() {
|
73
|
+
[ -d "/etc/init" ] && silent which initctl
|
74
|
+
}
|
75
|
+
|
76
|
+
has_sysv() {
|
77
|
+
[ -d "/etc/init.d" ]
|
78
|
+
}
|
79
|
+
|
80
|
+
#has_freebsd_rcng() {
|
81
|
+
#[ -d "/etc/rc.d" ] && silent which rcorder
|
82
|
+
#}
|
83
|
+
|
84
|
+
has_daemontools() {
|
85
|
+
[ -d "/service" ] && silent which sv
|
86
|
+
}
|
87
|
+
|
88
|
+
has_launchd() {
|
89
|
+
[ -d "/Library/LaunchDaemons" ] && silent which launchtl
|
90
|
+
}
|
91
|
+
|
92
|
+
install_help() {
|
93
|
+
case $platform in
|
94
|
+
systemd) echo "To start this service, use: systemctl start <%= attributes[:pleaserun_name] %>" ;;
|
95
|
+
upstart) echo "To start this service, use: initctl start <%= attributes[:pleaserun_name] %>" ;;
|
96
|
+
launchd) echo "To start this service, use: launchctl start <%= attributes[:pleaserun_name] %>" ;;
|
97
|
+
sysv) echo "To start this service, use: /etc/init.d/<%= attributes[:pleaserun_name] %> start" ;;
|
98
|
+
esac
|
99
|
+
}
|
100
|
+
|
101
|
+
platforms="systemd upstart launchd sysv"
|
102
|
+
installed=0
|
103
|
+
for platform in $platforms ; do
|
104
|
+
if has_$platform ; then
|
105
|
+
version="$(version_$platform)"
|
106
|
+
echo "Platform $platform ($version) detected. Installing service."
|
107
|
+
install_files $platform
|
108
|
+
install_actions $platform
|
109
|
+
install_help $platform
|
110
|
+
installed=1
|
111
|
+
break
|
112
|
+
fi
|
113
|
+
done
|
114
|
+
|
115
|
+
if [ "$installed" -eq 0 ] ; then
|
116
|
+
echo "Failed to detect any service platform, so no service was installed. Files are available in ${source} if you need them."
|
117
|
+
fi
|