Forum Discussion
What_Lies_Bene1
Nov 17, 2014Cirrostratus
iControl iFileFile Issue
Hey all. I've tried using both Puppet and a simple curl request to create iFileFile objects without success. In both cases the iFileFile creation call appears to be successful, but the object is not ...
R_Marc
Nov 18, 2014Nimbostratus
I found https://devcentral.f5.com/questions/possible-to-upload-overwrite-ifiles-using-icontrol
I had to do a couple things to make the upload work though. Here's my revised version:
!/bin/bash
filename=blah.txt
filesize=`wc -c < $filename`
echo $filesize
newfilesize=`expr $filesize - 1`
echo $newfilesize
filesize=$newfilesize
curl -k -u admin:admin \
--trace trace.txt \
--silent \
--request POST \
--header "Content-Type: text/plain" \
--header "Content-Range: 0-$filesize/$filesize" \
--data-binary "@$filename" \
$filename | python -m json.tool
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects