summaryrefslogtreecommitdiff
path: root/strata/openstack-services/open-iscsi.morph
blob: 9d135ab295583699402fce6a4a3a3c708f0e2037 (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
name: open-iscsi
kind: chunk
build-commands:
- make
install-commands:
# Rewrite prefix and exec_prefix which are set to "/usr" and "/" respectively
- make prefix="$PREFIX" exec_prefix="$PREFIX" DESTDIR="$DESTDIR" install
# Install iscsistart app which is not listed by default in PROGRAMS
- make prefix="$PREFIX" exec_prefix="$PREFIX" DESTDIR="$DESTDIR" PROGRAMS="usr/iscsistart" install
post-install-commands:
# Configure iscsi daemon
# Point the startup to the installed binary
- |
  sed -i -e "s|iscsid.startup = \/sbin\/iscsid|iscsid.startup = "$PREFIX"/sbin/iscsid|" \
            etc/iscsid.conf
# Start up a session automatically
- sed -i -e 's|node.startup = manual|node.startup = automatic|' etc/iscsid.conf
# Install config file
- install -D -m 644 etc/iscsid.conf "$DESTDIR"/etc/iscsi
# Install custom systemd unit file
- |
  install -D -m 644 /proc/self/fd/0 << 'EOF' "$DESTDIR$PREFIX"/lib/systemd/system/iscsid.service
  [Unit]
  Description=Open iSCSI Daemon
  After=network.target

  [Service]
  Type=forking
  ExecStart=/usr/sbin/iscsid

  [Install]
  WantedBy=multi-user.target
  EOF
# Install iscsi socket unit
- |
  install -D -m 644 /proc/self/fd/0 << 'EOF' "$DESTDIR$PREFIX"/lib/systemd/system/iscsid.socket
  [Unit]
  Description=Open-iSCSI iscsid Socket

  [Socket]
  ListenStream=@ISCSIADM_ABSTRACT_NAMESPACE

  [Install]
  WantedBy=sockets.target
  EOF