File: install_python_rule_engine

package info (click to toggle)
python-irodsclient 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,352 kB
  • sloc: python: 16,650; xml: 525; sh: 104; awk: 5; sql: 3; makefile: 3
file content (9 lines) | stat: -rwxr-xr-x 218 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash
# usage $0 [""|"y"|"/"*] [container_irods_packages_path]
if [[ $1 = /* ]]; then
  apt install -y "$2"/irods*rule*python*.deb
elif [ "$1" != "" ]; then
  apt install -y irods-rule.\*python
else
  : # nop
fi